From 5fcb0990c370f6da569b7421c91239747e6cfb66 Mon Sep 17 00:00:00 2001 From: Charles Garwood Date: Thu, 12 Oct 2017 11:01:12 -0400 Subject: [PATCH] Adds image attribute to html5 notify (#9832) (#9835) --- homeassistant/components/notify/html5.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/notify/html5.py b/homeassistant/components/notify/html5.py index 6b1cdf814fa..1b44ec60722 100644 --- a/homeassistant/components/notify/html5.py +++ b/homeassistant/components/notify/html5.py @@ -94,8 +94,8 @@ NOTIFY_CALLBACK_EVENT = 'html5_notification' # Badge and timestamp are Chrome specific (not in official spec) HTML5_SHOWNOTIFICATION_PARAMETERS = ( - 'actions', 'badge', 'body', 'dir', 'icon', 'lang', 'renotify', - 'requireInteraction', 'tag', 'timestamp', 'vibrate') + 'actions', 'badge', 'body', 'dir', 'icon', 'image', 'lang', + 'renotify', 'requireInteraction', 'tag', 'timestamp', 'vibrate') def get_service(hass, config, discovery_info=None):