1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-24 08:43:01 +00:00

Gestdown provider: ignore incomplete subtitles

This commit is contained in:
vitiko98 2022-05-23 23:28:26 -04:00
parent 0e98880494
commit 25281709c1

View file

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