fix 500 error on muting

pull/96/head
Aevann 2023-01-24 06:53:07 +02:00
parent 08fc3b4f41
commit 223909a2f8
1 changed files with 1 additions and 1 deletions

View File

@ -1246,7 +1246,7 @@ def mute_user(v:User, user_id):
)
g.db.add(user)
g.db.add(ma)
check_for_alts()
check_for_alts(user)
return {"message": f"@{user.username} has been muted!"}