mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-24 06:46:20 +08:00
Another fix for #517
This commit is contained in:
parent
94cfc53d02
commit
3807be5417
1 changed files with 0 additions and 2 deletions
|
@ -678,7 +678,6 @@ def wanted_download_subtitles(path, l, count_episodes):
|
||||||
|
|
||||||
for i in range(len(attempt)):
|
for i in range(len(attempt)):
|
||||||
if attempt[i][0] == language:
|
if attempt[i][0] == language:
|
||||||
language = language.split(':')[0]
|
|
||||||
if search_active(attempt[i][1]):
|
if search_active(attempt[i][1]):
|
||||||
notifications.write(msg='Searching for series subtitles...', queue='get_subtitle', item=l,
|
notifications.write(msg='Searching for series subtitles...', queue='get_subtitle', item=l,
|
||||||
length=count_episodes)
|
length=count_episodes)
|
||||||
|
@ -739,7 +738,6 @@ def wanted_download_subtitles_movie(path, l, count_movies):
|
||||||
|
|
||||||
for i in range(len(attempt)):
|
for i in range(len(attempt)):
|
||||||
if attempt[i][0] == language:
|
if attempt[i][0] == language:
|
||||||
language = language.split(':')[0]
|
|
||||||
if search_active(attempt[i][1]) is True:
|
if search_active(attempt[i][1]) is True:
|
||||||
notifications.write(msg='Searching for movies subtitles...', queue='get_subtitle', item=l,
|
notifications.write(msg='Searching for movies subtitles...', queue='get_subtitle', item=l,
|
||||||
length=count_movies)
|
length=count_movies)
|
||||||
|
|
Loading…
Reference in a new issue