From 53687c766da66c6b9e86c3bc9fa33b7739269e8e Mon Sep 17 00:00:00 2001 From: elyobelyob Date: Thu, 18 Mar 2021 16:02:38 +0000 Subject: [PATCH] Add URL input for Prowl (#46427) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Joakim Sørensen --- homeassistant/components/prowl/notify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/prowl/notify.py b/homeassistant/components/prowl/notify.py index 5d2efe76607..725c3b9de30 100644 --- a/homeassistant/components/prowl/notify.py +++ b/homeassistant/components/prowl/notify.py @@ -48,6 +48,8 @@ class ProwlNotificationService(BaseNotificationService): "description": message, "priority": data["priority"] if data and "priority" in data else 0, } + if data.get("url"): + payload["url"] = data["url"] _LOGGER.debug("Attempting call Prowl service at %s", url) session = async_get_clientsession(self._hass)