diff --git a/app/Services/Notification/DiscordWebhookService.php b/app/Services/Notification/DiscordWebhookService.php index 959bb50..86225eb 100644 --- a/app/Services/Notification/DiscordWebhookService.php +++ b/app/Services/Notification/DiscordWebhookService.php @@ -99,7 +99,7 @@ class DiscordWebhookService } elseif (str_contains($log->message, 'too low')) { $title = '🔴 ' . $this->cleanTranslation(__('Temperature Alert (Low)'), $companyLocale); $description = $this->cleanTranslation(__('Current temperature (:temp°C) is below the lower limit (:limit°C).', ['temp' => $temp, 'limit' => $limit]), $companyLocale); - $color = 561586; // cyan-600 + $color = 14753096; // rose-600 (與過高告警一致使用紅色) $fields[] = [ 'name' => $this->cleanTranslation(__('Current Temperature'), $companyLocale),