fix(signalr): delete state when cleaning state

This commit is contained in:
MingxuanGame
2025-08-22 16:59:10 +00:00
parent 207fc086c0
commit 254a56437d

View File

@@ -180,6 +180,7 @@ class Hub[TState: UserState]:
return
try:
await self._clean_state(state)
del self.state[client.user_id]
except Exception:
...