summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-09 14:27:17 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-09 14:27:17 +0200
commit6faa98072d3bae3d3f2cbf5f7dfa2c9de61da87e (patch)
tree6b6157bb7b699a896ed6acd129d7af9cf3421b11 /module/plugins/internal
parentFix https://github.com/pyload/pyload/issues/1472 (diff)
downloadpyload-6faa98072d3bae3d3f2cbf5f7dfa2c9de61da87e.tar.xz
[SimpleHoster] preload referer to False
Diffstat (limited to 'module/plugins/internal')
-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 49b29e280..25a35d9d8 100644
--- a/module/plugins/internal/SimpleHoster.py
+++ b/module/plugins/internal/SimpleHoster.py
@@ -241,7 +241,7 @@ def secondsToMidnight(gmt=0):
class SimpleHoster(Hoster):
__name__ = "SimpleHoster"
__type__ = "hoster"
- __version__ = "1.65"
+ __version__ = "1.66"
__pattern__ = r'^unmatchable$'
__config__ = [("use_premium", "bool", "Use premium account if available" , True),
@@ -514,7 +514,7 @@ class SimpleHoster(Hoster):
def preload(self):
- self.html = self.load(self.pyfile.url, cookies=bool(self.COOKIES), decode=not self.TEXT_ENCODING)
+ self.html = self.load(self.pyfile.url, cookies=bool(self.COOKIES), ref=False, decode=not self.TEXT_ENCODING)
if isinstance(self.TEXT_ENCODING, basestring):
self.html = unicode(self.html, self.TEXT_ENCODING)