From 0e763b79d52cd71d43bd65fe1f14abed0bd585a7 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Wed, 11 Aug 2021 09:39:59 -0400 Subject: [PATCH] no log: quick fix --- bazarr/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/config.py b/bazarr/config.py index 04183895c..1b2a3c655 100644 --- a/bazarr/config.py +++ b/bazarr/config.py @@ -318,7 +318,7 @@ def save_settings(settings_items): # Make sure that text based form values aren't pass as list if isinstance(value, list) and len(value) == 1 and settings_keys[-1] not in array_keys: value = value[0] - if value in empty_values and value is not '': + if value in empty_values and value != '': value = None # Make sure empty language list are stored correctly