diff --git a/bazarr/config.py b/bazarr/config.py index 249204b40..04183895c 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: + if value in empty_values and value is not '': value = None # Make sure empty language list are stored correctly