diff options
author | 2011-05-26 20:20:21 +0200 | |
---|---|---|
committer | 2011-05-26 20:20:21 +0200 | |
commit | 5d0807959de238399fb49de6d0b29b5f4e4b37f1 (patch) | |
tree | 178b0f813447e54859f0b3f11432c06458dd0f90 /module/web/json_app.py | |
parent | rehost plugin, fixed some account management issues (diff) | |
download | pyload-5d0807959de238399fb49de6d0b29b5f4e4b37f1.tar.xz |
mirror detection/handling
Diffstat (limited to 'module/web/json_app.py')
-rw-r--r-- | module/web/json_app.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/module/web/json_app.py b/module/web/json_app.py index 9e9536a40..738f5ac63 100644 --- a/module/web/json_app.py +++ b/module/web/json_app.py @@ -142,6 +142,8 @@ def package(id): pyfile["icon"] = "status_waiting.png" elif pyfile["status"] == 8: pyfile["icon"] = "status_failed.png" + elif pyfile["status"] == 4: + pyfile["icon"] = "arrow_right.png" elif pyfile["status"] in (11, 13): pyfile["icon"] = "status_proc.png" else: |