From dce211f7df76614fd033fa9041da8bc30aaaadb0 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 26 Oct 2020 17:30:12 +0100 Subject: [PATCH] Adjust Telegram Bot integration --- homeassistant/components/telegram_bot/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/telegram_bot/__init__.py b/homeassistant/components/telegram_bot/__init__.py index 7a9d0c18e92..60e33414b1e 100644 --- a/homeassistant/components/telegram_bot/__init__.py +++ b/homeassistant/components/telegram_bot/__init__.py @@ -329,7 +329,9 @@ async def async_setup(hass, config): else: attribute_templ.hass = hass try: - data[attribute] = attribute_templ.async_render() + data[attribute] = attribute_templ.async_render( + parse_result=False + ) except TemplateError as exc: _LOGGER.error( "TemplateError in %s: %s -> %s",