From bceef418c8af68693d2b682db02b6c29ff42f901 Mon Sep 17 00:00:00 2001 From: Cinzya Date: Sun, 26 Oct 2025 21:52:51 +0100 Subject: [PATCH] refactor: remove staging URL logic from ServerPatchCheck constructor --- app/Notifications/Server/ServerPatchCheck.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/Notifications/Server/ServerPatchCheck.php b/app/Notifications/Server/ServerPatchCheck.php index bfca19e40..ba6cd4982 100644 --- a/app/Notifications/Server/ServerPatchCheck.php +++ b/app/Notifications/Server/ServerPatchCheck.php @@ -17,9 +17,6 @@ public function __construct(public Server $server, public array $patchData) { $this->onQueue('high'); $this->serverUrl = base_url().'/server/'.$this->server->uuid.'/security/patches'; - if (isDev()) { - $this->serverUrl = 'https://staging-but-dev.coolify.io/server/'.$this->server->uuid.'/security/patches'; - } } public function via(object $notifiable): array