diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-14 21:38:58 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-14 21:38:58 +0200 |
commit | 90b3a9a19481a7f1211f90e271abebe1e8544bf9 (patch) | |
tree | 95349d2f3751b5fa7097159e17a0c0a4a65ea3a9 /module | |
parent | fixed download aborting (diff) | |
download | pyload-90b3a9a19481a7f1211f90e271abebe1e8544bf9.tar.xz |
fixed download aborting #2
Diffstat (limited to 'module')
-rw-r--r-- | module/web/json_app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/json_app.py b/module/web/json_app.py index a8684da7d..53caeb9f1 100644 --- a/module/web/json_app.py +++ b/module/web/json_app.py @@ -103,7 +103,7 @@ def unpause(): @login_required('status') def cancel(): try: - return PYLOAD.stopDownloads() + return PYLOAD.stopAllDownloads() except: return HTTPError() |