mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-22 07:42:32 +00:00
Fixed provider AvistaZ & CinemaZ optional subtitle Uploader (#2628)
This commit is contained in:
parent
8c68fba85d
commit
dc9df6814b
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ class AvistazNetworkProviderBase(Provider):
|
|||
release_name = release['Title'].get_text().strip()
|
||||
lang = lookup_lang(subtitle_cols['Language'].get_text().strip())
|
||||
download_link = subtitle_cols['Download'].a['href']
|
||||
uploader_name = subtitle_cols['Uploader'].get_text().strip()
|
||||
uploader_name = subtitle_cols['Uploader'].get_text().strip() if 'Uploader' in subtitle_cols else None
|
||||
|
||||
if lang not in languages:
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue