summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--libs/subliminal_patch/providers/gestdown.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/subliminal_patch/providers/gestdown.py b/libs/subliminal_patch/providers/gestdown.py
index f66809864..1a84a9459 100644
--- a/libs/subliminal_patch/providers/gestdown.py
+++ b/libs/subliminal_patch/providers/gestdown.py
@@ -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