diff --git a/backend/app_sdk/app_base.py b/backend/app_sdk/app_base.py index d2f3d2f5..7ce2da6c 100755 --- a/backend/app_sdk/app_base.py +++ b/backend/app_sdk/app_base.py @@ -1743,10 +1743,10 @@ class AppBase: elif check.lower() == "contains_any_of": newvalue = [destinationvalue.lower()] - if "," in destinationvalue: - newvalue = destinationvalue.split(",") - elif ", " in destinationvalue: + if ", " in destinationvalue: newvalue = destinationvalue.split(", ") + elif "," in destinationvalue: + newvalue = destinationvalue.split(",") for item in newvalue: if not item: