#1515: Fixed a bug with contains any of

This commit is contained in:
Frikky
2024-10-08 18:09:02 +02:00
parent cabde13ba2
commit 38e9d66cfd
+3 -3
View File
@@ -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: