From d1fce3eb775918a30338a2120d31cbe567711dd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Sat, 4 Mar 2023 15:20:35 +0100 Subject: [PATCH] [fix] conf --- source/logic/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/logic/conf.py b/source/logic/conf.py index b8a76d2..3bb50f3 100644 --- a/source/logic/conf.py +++ b/source/logic/conf.py @@ -309,8 +309,8 @@ def conf_normalize_check( node__["annoy"] = node_["annoy"] if ("schedule" in node_): node__["schedule"] = conf_normalize_schedule(node_["schedule"]) - if ("notification" in node_): - node__["notification"] = list( + if ("notifications" in node_): + node__["notifications"] = list( map( lambda x: conf_normalize_notification(notification_channel_implementations, x), node_["notifications"]