remotes/1693045480750635534/spooky-22
Aevann1 2022-04-26 02:38:52 +02:00
parent f9ea51611f
commit 5c1f253e0b
1 changed files with 6 additions and 6 deletions

View File

@ -16,9 +16,9 @@ else:
typing = []
online = []
muted = cache.get('muted') or {}
messages = cache.get('chat') or []
total = cache.get('total') or 0
muted = cache.get(f'{SITE}_muted') or {}
messages = cache.get(f'{SITE}_chat') or []
total = cache.get(f'{SITE}_total') or 0
@app.get("/chat")
@auth_required
@ -110,7 +110,7 @@ def typing_indicator(data, v):
def close_running_threads():
cache.set('chat', messages)
cache.set('total', total)
cache.set('muted', muted)
cache.set(f'{SITE}_chat', messages)
cache.set(f'{SITE}_total', total)
cache.set(f'{SITE}_muted', muted)
atexit.register(close_running_threads)