Fix for regex filter when language is unknown

Fix for when with the regex filter, the language is unknown.
It will check now first if its a string.
pull/1928/head
jz1 8 months ago committed by GitHub
parent a92ee5de67
commit 4eff61502f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1822,6 +1822,7 @@ class Plex(Library):
has_match = False
for reg in filter_data:
for name in attrs:
if isinstance(name, str)::
if re.compile(reg).search(name):
has_match = True
if has_match is False:

Loading…
Cancel
Save