forked from rDrama/rDrama
1
0
Fork 0

fix chat count

master
Aevann 2023-01-28 12:44:15 +02:00
parent 12f6da902d
commit 83b34832b8
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ def connect(v):
@socketio.on('disconnect') @socketio.on('disconnect')
@admin_level_required(PERMS['CHAT']) @admin_level_required(PERMS['CHAT'])
def disconnect(v): def disconnect(v):
if v.username in online: if [v.username, v.id, v.name_color] in online:
online.remove(v.username) online.remove(v.username)
refresh_online() refresh_online()