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 {