From 17ed090f98c910212803bef28f651abfc6bb9e60 Mon Sep 17 00:00:00 2001 From: Rami Mosleh Date: Sat, 10 Sep 2022 20:35:26 +0300 Subject: [PATCH] Fix sending notification to multiple targets in Pushover (#78111) fix sending to mulitple targets --- homeassistant/components/pushover/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/pushover/notify.py b/homeassistant/components/pushover/notify.py index dd711c80aaf..bcf47264108 100644 --- a/homeassistant/components/pushover/notify.py +++ b/homeassistant/components/pushover/notify.py @@ -128,7 +128,7 @@ class PushoverNotificationService(BaseNotificationService): self.pushover.send_message( self._user_key, message, - kwargs.get(ATTR_TARGET), + ",".join(kwargs.get(ATTR_TARGET, [])), title, url, url_title,