summaryrefslogtreecommitdiff
path: root/service/pixelated/controllers/sync_info_controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/pixelated/controllers/sync_info_controller.py')
-rw-r--r--service/pixelated/controllers/sync_info_controller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/pixelated/controllers/sync_info_controller.py b/service/pixelated/controllers/sync_info_controller.py
index 3a8e1a16..50e53852 100644
--- a/service/pixelated/controllers/sync_info_controller.py
+++ b/service/pixelated/controllers/sync_info_controller.py
@@ -29,7 +29,7 @@ class SyncInfoController:
def set_sync_info(self, soledad_sync_status):
self.current, self.total = map(int, soledad_sync_status.content.split('/'))
- def sync_info(self):
+ def sync_info(self, request):
_sync_info = {
'is_syncing': self.current != self.total,
'count': {
@@ -38,4 +38,4 @@ class SyncInfoController:
'progress': self._get_progress()
}
}
- return respond_json(_sync_info)
+ return respond_json(_sync_info, request)