Merge pull request #1462 from coder2020official/master

Allow using non-class states
This commit is contained in:
Badiboy 2022-02-23 11:32:01 +03:00 committed by GitHub
commit 01a6827542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -278,7 +278,10 @@ class StateFilter(AdvancedCustomFilter):
if text == '*': return True
if isinstance(text, list):
new_text = [i.name for i in text]
new_text = []
for i in text:
if isclass(i): i = i.name
new_text.append(i)
text = new_text
elif isinstance(text, object):
text = text.name

View File

@ -282,7 +282,10 @@ class StateFilter(AdvancedCustomFilter):
if text == '*': return True
if isinstance(text, list):
new_text = [i.name for i in text]
new_text = []
for i in text:
if isclass(i): i = i.name
new_text.append(i)
text = new_text
elif isinstance(text, object):
text = text.name