diff --git a/bot/helper/task_utils/status_utils/meta_status.py b/bot/helper/task_utils/status_utils/meta_status.py index 20ea0b7f1e41..dc79b7e6692a 100644 --- a/bot/helper/task_utils/status_utils/meta_status.py +++ b/bot/helper/task_utils/status_utils/meta_status.py @@ -48,6 +48,9 @@ def size(self): def status(self): return MirrorStatus.STATUS_METADATA + def speed(self): + return "0B/s" + def task(self): return self diff --git a/bot/helper/task_utils/status_utils/queue_status.py b/bot/helper/task_utils/status_utils/queue_status.py index 315bf5fd1afc..54ec054bf35c 100644 --- a/bot/helper/task_utils/status_utils/queue_status.py +++ b/bot/helper/task_utils/status_utils/queue_status.py @@ -35,6 +35,9 @@ def status(self): return MirrorStatus.STATUS_QUEUEDL return MirrorStatus.STATUS_QUEUEUP + def speed(self): + return "0B/s" + def task(self): return self