summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-12-20 22:11:05 +0100
committerGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-12-20 22:11:05 +0100
commitdb382f115cda4843248e8c849d204459fbe10452 (patch)
treeb17da2d27b4ba5e4f898835219101aa4bd0ef3e1 /module
parent[OneFichierCom] fix #2196 (diff)
downloadpyload-db382f115cda4843248e8c849d204459fbe10452.tar.xz
[SimpleHoster] update
Diffstat (limited to 'module')
-rw-r--r--module/plugins/internal/SimpleHoster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py
index b67c12da7..44270e7b2 100644
--- a/module/plugins/internal/SimpleHoster.py
+++ b/module/plugins/internal/SimpleHoster.py
@@ -16,7 +16,7 @@ from module.plugins.internal.utils import (encode, parse_name, parse_size,
class SimpleHoster(Hoster):
__name__ = "SimpleHoster"
__type__ = "hoster"
- __version__ = "2.08"
+ __version__ = "2.09"
__status__ = "stable"
__pattern__ = r'^unmatchable$'
@@ -277,7 +277,7 @@ class SimpleHoster(Hoster):
self.log_info(_("Processing as free download..."))
self.handle_free(pyfile)
- if not self.last_download:
+ if self.link and not self.last_download:
self.log_info(_("Downloading file..."))
self.download(self.link, disposition=self.DISPOSITION)