diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index 53c6c03df7..54dc21c1b5 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -85,7 +85,7 @@ class BaseInvenTreeSetting(models.Model): # Convert to javascript compatible booleans if cls.validator_is_bool(validator): - value = value.lower() + value = str(value).lower() # Numerical values remain the same elif cls.validator_is_int(validator):