Set full_state to False
This commit is contained in:
parent
9dc5f8f8a9
commit
890859b022
1 changed files with 1 additions and 2 deletions
3
main.py
3
main.py
|
@ -52,8 +52,7 @@ 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, full_state=True,
|
sync_response = await client.sync(timeout=30000, since=sync_token.token)
|
||||||
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