From 09da46fd588a013784ac745f5fb17d37f75bda3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Sun, 18 Aug 2019 20:39:28 +0200 Subject: [PATCH] fix #2 --- custom_components/favicon/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/favicon/__init__.py b/custom_components/favicon/__init__.py index bcaf43f..d5ac4a4 100644 --- a/custom_components/favicon/__init__.py +++ b/custom_components/favicon/__init__.py @@ -13,7 +13,7 @@ async def async_setup(hass, config): apple = config[DOMAIN].get('apple') title = config[DOMAIN].get('title') - if favicon or apple: + if favicon or apple or title: get_template = homeassistant.components.frontend.IndexView.get_template def new_get_template(self):