Send relevant active client info to FE
All checks were successful
release-image / release-image (push) Successful in 2m53s

This commit is contained in:
Logan Cusano
2025-06-29 03:47:16 -04:00
parent d889f0e8ea
commit 2e300800bc
3 changed files with 15 additions and 4 deletions

View File

@@ -199,7 +199,7 @@ def find_token_in_active_clients(target_token: str) -> bool:
"""
for client_id in current_app.active_clients:
try:
if current_app.active_clients[client_id].active_token.token == target_token:
if current_app.active_clients[client_id].active_token == target_token:
return True
except Exception as e:
pass