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)