diff options
author | kasperj <kasper.j@me.com> | 2015-10-06 10:22:42 +0200 |
---|---|---|
committer | kasperj <kasper.j@me.com> | 2015-10-06 10:22:42 +0200 |
commit | a278a3a73e8c57baf1e08d05d22813b2c3d3a657 (patch) | |
tree | 5724a87596d668abd73cb1992fff817be0bc9046 | |
parent | Small code cosmetics (diff) | |
download | pyload-a278a3a73e8c57baf1e08d05d22813b2c3d3a657.tar.xz |
Double URL Fix
Fix for the issue with http://url.tld/http://url.tld/XXX
-rw-r--r-- | module/plugins/internal/Base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/Base.py b/module/plugins/internal/Base.py index 51be82bd4..1b2987322 100644 --- a/module/plugins/internal/Base.py +++ b/module/plugins/internal/Base.py @@ -378,7 +378,7 @@ class Base(Plugin): def fixurl(self, url, baseurl=None, unquote=True): - url = fixurl(url, unquote=False) + #url = fixurl(url, unquote=False) if not baseurl: baseurl = fixurl(self.pyfile.url) |