From aebca89c04cdff1d11f32d915fb306ad5ff44666 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Thu, 7 Nov 2019 23:32:34 +0000 Subject: [PATCH] Re-add full_state=True --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 8ea97b2..d4e31ee 100644 --- a/main.py +++ b/main.py @@ -52,7 +52,8 @@ async def main(): # Sync loop while True: # Sync with the server - sync_response = await client.sync(timeout=30000, since=sync_token.token) + sync_response = await client.sync(timeout=30000, full_state=True, + since=sync_token.token) # Check if the sync had an error if type(sync_response) == SyncError: