summaryrefslogtreecommitdiffstats
path: root/module/web/pyload_app.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-07-19 21:10:04 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-07-19 21:10:04 +0200
commit8c94f8e7214d9ee0a131584e672ae83277303f2b (patch)
treeb43da702fe8888883d18eaf622e9a170d4e4410b /module/web/pyload_app.py
parentfix in unrar plugin (diff)
downloadpyload-8c94f8e7214d9ee0a131584e672ae83277303f2b.tar.xz
use correct encoding header parsing
Diffstat (limited to 'module/web/pyload_app.py')
-rw-r--r--module/web/pyload_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py
index 923d5d756..7492114ca 100644
--- a/module/web/pyload_app.py
+++ b/module/web/pyload_app.py
@@ -168,7 +168,7 @@ def collector():
@route("/downloads")
@login_required('download')
def downloads():
- root = PYLOAD.getConfigValue("general", "download_folder")
+ root = fs_decode(PYLOAD.getConfigValue("general", "download_folder"))
if not isdir(root):
return base([_('Download directory not found.')])