From 94c0cdde24b3cbfc648984d9b30e3117c9e30b41 Mon Sep 17 00:00:00 2001 From: Cato Date: Tue, 1 Jul 2025 23:37:47 +0200 Subject: [PATCH] fix err notification bug --- ntfy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfy.go b/ntfy.go index b62cf6e..efbf261 100644 --- a/ntfy.go +++ b/ntfy.go @@ -34,7 +34,7 @@ func SendAwlNotification(channel string, binColors []string) error { } func SendNotification(channel, message string) error { - topic := fmt.Sprintf("https://ntfy.sh/awl_neuss_%s_err", channel) + topic := fmt.Sprintf("https://ntfy.sh/awl_neuss_%s", channel) _, err := http.Post(topic, "text/plain", strings.NewReader(message)) return err }