use newlines for notification

This commit is contained in:
cato-001 2025-07-29 09:50:26 +02:00
parent df546831f3
commit cb42bee299

View file

@ -31,7 +31,8 @@ func SendAwlNotification(binColors []string) error {
} else { } else {
message = "Morgen werden folgende Tonnen abgeholt: " message = "Morgen werden folgende Tonnen abgeholt: "
} }
message += strings.Join(bins, ", ") message += "\n"
message += strings.Join(bins, "\n")
return SendNotification(message) return SendNotification(message)
} }