This commit is contained in:
2024-08-10 18:46:40 +02:00
parent 38a387f62f
commit 1790a8a56f

View File

@@ -83,5 +83,9 @@ async def syncronize():
async def start_synchronizer(): async def start_synchronizer():
while True: while True:
await syncronize() try:
await syncronize()
except Exception as e:
print(f"Error: {e}")
await sleep(5 * 30) await sleep(5 * 30)