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.
This commit is contained in:
jz1 2024-03-20 18:35:56 +01:00 committed by GitHub
parent a92ee5de67
commit 4eff61502f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: