Hotify agent missing echobellUrl

This commit is contained in:
headlessdev
2025-04-30 14:48:33 +02:00
parent 912fd68a0f
commit 2188f76318

View File

@@ -86,7 +86,7 @@ func LoadNotifications(db *sql.DB) ([]models.Notification, error) {
rows, err := db.Query( rows, err := db.Query(
`SELECT id, enabled, type, "smtpHost", "smtpPort", "smtpFrom", "smtpUser", "smtpPass", "smtpSecure", "smtpTo", `SELECT id, enabled, type, "smtpHost", "smtpPort", "smtpFrom", "smtpUser", "smtpPass", "smtpSecure", "smtpTo",
"telegramChatId", "telegramToken", "discordWebhook", "gotifyUrl", "gotifyToken", "ntfyUrl", "ntfyToken", "telegramChatId", "telegramToken", "discordWebhook", "gotifyUrl", "gotifyToken", "ntfyUrl", "ntfyToken",
"pushoverUrl", "pushoverToken", "pushoverUser", "echobellUrl" "pushoverUrl", "pushoverToken", "pushoverUser", "echobellURL"
FROM notification FROM notification
WHERE enabled = true`, WHERE enabled = true`,
) )