Change path to favicon in GNTP

This broke when #2537 was merged.
This commit is contained in:
Robbie Trencheny 2016-07-20 14:46:16 -07:00 committed by GitHub
parent ae5dfbdf55
commit d570d38d5c

View File

@ -22,7 +22,7 @@ def get_service(hass, config):
"""Get the GNTP notification service."""
if config.get('app_icon') is None:
icon_file = os.path.join(os.path.dirname(__file__), "..", "frontend",
"www_static", "favicon-192x192.png")
"www_static", "icons", "favicon-192x192.png")
app_icon = open(icon_file, 'rb').read()
else:
app_icon = config.get('app_icon')