From 31ae8dd9db14d7133f1498535d7d65d3847c0fe4 Mon Sep 17 00:00:00 2001
From: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
Date: Mon, 30 Mar 2026 11:37:28 +0530
Subject: [PATCH] fix(notification): updated cloud subscription links to valid
url
---
app/Notifications/Server/ForceDisabled.php | 8 ++++----
resources/views/emails/server-force-disabled.blade.php | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/app/Notifications/Server/ForceDisabled.php b/app/Notifications/Server/ForceDisabled.php
index 7a1f7bcbf..4b56f5860 100644
--- a/app/Notifications/Server/ForceDisabled.php
+++ b/app/Notifications/Server/ForceDisabled.php
@@ -40,7 +40,7 @@ public function toDiscord(): DiscordMessage
color: DiscordMessage::errorColor(),
);
- $message->addField('Please update your subscription to enable the server again!', '[Link](https://app.coolify.io/subscriptions)');
+ $message->addField('Please update your subscription to enable the server again!', '[Link](https://app.coolify.io/subscription)');
return $message;
}
@@ -48,7 +48,7 @@ public function toDiscord(): DiscordMessage
public function toTelegram(): array
{
return [
- 'message' => "Coolify: Server ({$this->server->name}) disabled because it is not paid!\n All automations and integrations are stopped.\nPlease update your subscription to enable the server again [here](https://app.coolify.io/subscriptions).",
+ 'message' => "Coolify: Server ({$this->server->name}) disabled because it is not paid!\n All automations and integrations are stopped.\nPlease update your subscription to enable the server again [here](https://app.coolify.io/subscription).",
];
}
@@ -57,7 +57,7 @@ public function toPushover(): PushoverMessage
return new PushoverMessage(
title: 'Server disabled',
level: 'error',
- message: "Server ({$this->server->name}) disabled because it is not paid!\n All automations and integrations are stopped.
Please update your subscription to enable the server again [here](https://app.coolify.io/subscriptions).",
+ message: "Server ({$this->server->name}) disabled because it is not paid!\n All automations and integrations are stopped.
Please update your subscription to enable the server again [here](https://app.coolify.io/subscription).",
);
}
@@ -66,7 +66,7 @@ public function toSlack(): SlackMessage
$title = 'Server disabled';
$description = "Server ({$this->server->name}) disabled because it is not paid!\n";
$description .= "All automations and integrations are stopped.\n\n";
- $description .= 'Please update your subscription to enable the server again: https://app.coolify.io/subscriptions';
+ $description .= 'Please update your subscription to enable the server again: https://app.coolify.io/subscription';
return new SlackMessage(
title: $title,
diff --git a/resources/views/emails/server-force-disabled.blade.php b/resources/views/emails/server-force-disabled.blade.php
index 805df3296..4ab46b5a0 100644
--- a/resources/views/emails/server-force-disabled.blade.php
+++ b/resources/views/emails/server-force-disabled.blade.php
@@ -1,5 +1,5 @@
Your server ({{ $name }}) disabled because it is not paid! All automations and integrations are stopped.
- Please update your subscription to enable the server again [here](https://app.coolify.io/subscriptions).
+ Please update your subscription to enable the server again [here](https://app.coolify.io/subscription).