fix chat count

pull/104/head
Aevann 2023-01-28 17:10:45 +02:00
parent 1670978320
commit d5c23785d0
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ def connect(v):
@admin_level_required(PERMS['CHAT'])
def disconnect(v):
if [v.username, v.id, v.name_color] in online:
online.remove(v.username)
online.remove([v.username, v.id, v.name_color])
refresh_online()
for val in typing.values():