mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 01:02:19 +00:00
Gestdown provider: ignore incomplete subtitles
This commit is contained in:
parent
0e98880494
commit
25281709c1
1 changed files with 3 additions and 0 deletions
|
@ -104,6 +104,9 @@ class GestdownProvider(Provider):
|
|||
return None
|
||||
|
||||
for subtitle_dict in matching_subtitles:
|
||||
if not subtitle_dict["completed"]:
|
||||
continue
|
||||
|
||||
sub = GestdownSubtitle(language, subtitle_dict)
|
||||
logger.debug("Found subtitle: %s", sub)
|
||||
yield sub
|
||||
|
|
Loading…
Reference in a new issue