mirror of
https://github.com/rightup/pyMC_Repeater.git
synced 2026-03-28 17:43:06 +01:00
bug:Skip already-evicted clients during eviction checks in RoomServer
This commit is contained in:
@@ -494,6 +494,10 @@ class RoomServer:
|
||||
push_failures = sync_state.get('push_failures', 0)
|
||||
last_activity = sync_state.get('last_activity', 0)
|
||||
|
||||
# Skip already-evicted clients (marked with last_activity=0)
|
||||
if last_activity == 0:
|
||||
continue
|
||||
|
||||
evict = False
|
||||
reason = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user