diff options
Diffstat (limited to 'module/PyFile.py')
-rw-r--r-- | module/PyFile.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/PyFile.py b/module/PyFile.py index 1a574d51d..6d887bbb3 100644 --- a/module/PyFile.py +++ b/module/PyFile.py @@ -28,9 +28,9 @@ statusMap = { "offline": 1, "online": 2, "queued": 3, - "checking": 4, + "skipped": 4, "waiting": 5, - "reconnected": 6, + "temp. offline": 6, "starting": 7, "failed": 8, "aborted": 9, @@ -38,7 +38,7 @@ statusMap = { "custom": 11, "downloading": 12, "processing": 13, - "unknown": 14 + "unknown": 14, } def formatSize(size): |