use newlines for notification
This commit is contained in:
parent
df546831f3
commit
cb42bee299
1 changed files with 2 additions and 1 deletions
3
ntfy.go
3
ntfy.go
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue