summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/NetloadIn.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/NetloadIn.py')
-rw-r--r--module/plugins/hoster/NetloadIn.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py
index 6ab0184a8..f9ea5f698 100644
--- a/module/plugins/hoster/NetloadIn.py
+++ b/module/plugins/hoster/NetloadIn.py
@@ -239,9 +239,11 @@ class NetloadIn(Hoster):
self.download(url, cookies=True)
- check = self.checkDownload({"empty": re.compile(r"^$")})
+ check = self.checkDownload({"empty": re.compile(r"^$"), "offline": re.compile("\* The file was deleted")})
if check == "empty":
self.log.info(_("Downloaded File was empty"))
self.retry()
+ else check == "offline":
+ self.offline()