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 }