Fix sending notification to multiple targets in Pushover (#78111)
fix sending to mulitple targetspull/78202/head
parent
dbcb269111
commit
17ed090f98
|
@ -128,7 +128,7 @@ class PushoverNotificationService(BaseNotificationService):
|
||||||
self.pushover.send_message(
|
self.pushover.send_message(
|
||||||
self._user_key,
|
self._user_key,
|
||||||
message,
|
message,
|
||||||
kwargs.get(ATTR_TARGET),
|
",".join(kwargs.get(ATTR_TARGET, [])),
|
||||||
title,
|
title,
|
||||||
url,
|
url,
|
||||||
url_title,
|
url_title,
|
||||||
|
|
Loading…
Reference in New Issue