From bb938a82b500e1c9a46888783ba267a2799d9f36 Mon Sep 17 00:00:00 2001 From: Nitzo Date: Thu, 25 Feb 2016 23:50:48 +0200 Subject: fix #2359 --- module/plugins/internal/Hoster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/internal/Hoster.py') diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py index 95f82cd0d..bc758e98e 100644 --- a/module/plugins/internal/Hoster.py +++ b/module/plugins/internal/Hoster.py @@ -34,7 +34,7 @@ if not hasattr(__builtin__.property, "setter"): class Hoster(Base): __name__ = "Hoster" __type__ = "hoster" - __version__ = "0.56" + __version__ = "0.57" __status__ = "stable" __pattern__ = r'^unmatchable$' @@ -139,7 +139,7 @@ class Hoster(Base): self.pyload.hookManager.dispatchEvent("download_processed", self.pyfile) try: - unfinished = any(fdata.get('status') == 3 for fid, fdata in pypack.getChildren().items() + unfinished = any(fdata.get('status') in (3, 7) for fid, fdata in pypack.getChildren().items() if fid != self.pyfile.id) if unfinished: return -- cgit v1.2.3