diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-12 16:11:39 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-12 16:11:39 +0100 |
commit | 41326b63c836a91aff560181b7bcc2099b0eca88 (patch) | |
tree | 51939071e98e8ccae1e1c134444787ef4b12b740 /module/plugins | |
parent | [Captcha9kw] Fix typo (diff) | |
download | pyload-41326b63c836a91aff560181b7bcc2099b0eca88.tar.xz |
[Plugin] Content-disposition name should not need to be html_unescaped
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index d1227eb29..f4b6c85cd 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -606,7 +606,7 @@ class Plugin(Base): newname = self.req.httpDownload(url, filename, get=get, post=post, ref=ref, cookies=cookies, chunks=self.getChunkCount(), resume=self.resumeDownload, progressNotify=self.pyfile.setProgress, disposition=disposition) - newname = urlparse(html_unescape(newname)).path.split("/")[-1] + newname = urlparse(newname).path.split("/")[-1] finally: self.pyfile.size = self.req.size |