Re-add full_state=True
This commit is contained in:
parent
f5135aa30a
commit
aebca89c04
1 changed files with 2 additions and 1 deletions
3
main.py
3
main.py
|
@ -52,7 +52,8 @@ async def main():
|
||||||
# Sync loop
|
# Sync loop
|
||||||
while True:
|
while True:
|
||||||
# Sync with the server
|
# 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
|
# Check if the sync had an error
|
||||||
if type(sync_response) == SyncError:
|
if type(sync_response) == SyncError:
|
||||||
|
|
Loading…
Reference in a new issue