From e39402ff70d53124a9829c3a21520f5a14829e4f Mon Sep 17 00:00:00 2001 From: headlessdev Date: Sat, 19 Apr 2025 16:23:53 +0200 Subject: [PATCH] small notification text fix --- agent/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/main.go b/agent/main.go index 4c2d1b6..48391bd 100644 --- a/agent/main.go +++ b/agent/main.go @@ -206,7 +206,7 @@ func checkAndUpdateStatus(db *sql.DB, client *http.Client, apps []Application) { var notificationTemplate string err := db.QueryRow("SELECT notification_text FROM settings LIMIT 1").Scan(¬ificationTemplate) if err != nil || notificationTemplate == "" { - notificationTemplate = "The application '!name' (!url) went !status!" + notificationTemplate = "The application !name (!url) went !status!" } for _, app := range apps {