forked from rDrama/rDrama
1
0
Fork 0

fix 500 error in /revert_actions

master
Aevann1 2022-08-11 06:02:23 +02:00
parent 2509861d27
commit b79638b2dd
1 changed files with 4 additions and 2 deletions

View File

@ -267,7 +267,8 @@ def revert_actions(v, username):
user.unban_utc = 0
user.ban_evade = 0
user.ban_reason = None
send_repeatable_notification(user.id, f"@{v.username} has unbanned you!")
if user.is_banned:
send_repeatable_notification(user.id, f"@{v.username} has unbanned you!")
g.db.add(user)
for u in user.alts:
u.shadowbanned = None
@ -275,7 +276,8 @@ def revert_actions(v, username):
u.unban_utc = 0
u.ban_evade = 0
u.ban_reason = None
send_repeatable_notification(u.id, f"@{v.username} has unbanned you!")
if u.is_banned:
send_repeatable_notification(u.id, f"@{v.username} has unbanned you!")
g.db.add(u)
return {"message": "Admin actions reverted!"}