From 2d8d54def5e7b6779ee29e6abfce80f5ca8c23aa Mon Sep 17 00:00:00 2001 From: missionfloyd Date: Sun, 21 Apr 2024 16:55:27 -0600 Subject: [PATCH] Fix empty override settings Apparently empty dropdowns now return None --- modules/infotext_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/infotext_utils.py b/modules/infotext_utils.py index 3d58e2d16..9347ec669 100644 --- a/modules/infotext_utils.py +++ b/modules/infotext_utils.py @@ -420,6 +420,9 @@ def create_override_settings_dict(text_pairs): """ res = {} + + if not text_pairs: + return res params = {} for pair in text_pairs: