replaced uploader from <n/a> to anonymous when not found

This commit is contained in:
Bazarr 2020-05-06 11:04:52 +01:00
parent 2dcfc433c3
commit 8b04941a3f
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ class LegendasdivxProvider(Provider):
# get subtitle uploader
sub_header = _subbox.find("div", {"class" :"sub_header"})
uploader = sub_header.find("a").text if sub_header else '<n/a>'
uploader = sub_header.find("a").text if sub_header else 'anonymous'
exact_match = False
if video.name.lower() in description.lower():