From c3668a24637828ab9011ff44fcfaea3bfa8fd861 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 26 Oct 2020 16:52:45 +0100 Subject: [PATCH] Adjust apns integration --- homeassistant/components/apns/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/apns/notify.py b/homeassistant/components/apns/notify.py index 59b2a7aa9fa..24d666fa59b 100644 --- a/homeassistant/components/apns/notify.py +++ b/homeassistant/components/apns/notify.py @@ -229,7 +229,7 @@ class ApnsNotificationService(BaseNotificationService): if isinstance(message, str): rendered_message = message elif isinstance(message, template_helper.Template): - rendered_message = message.render() + rendered_message = message.render(parse_result=False) else: rendered_message = ""