mirror of
https://github.com/CAG2Mark/SuperUserBot.git
synced 2025-02-05 01:35:16 +01:00
fix bug
This commit is contained in:
parent
3eb94ae50b
commit
0bcb1452d5
1 changed files with 3 additions and 1 deletions
2
bot.py
2
bot.py
|
@ -60,6 +60,8 @@ class Bot:
|
|||
pw_bytes = password.encode('utf-8')
|
||||
del password
|
||||
pw_hash = self.data.get_user_password_hashsalt(inter.guild_id, inter.user.id)
|
||||
|
||||
if pw_hash:
|
||||
pw_hash_bytes = bytes.fromhex(self.data.get_user_password_hashsalt(inter.guild_id, inter.user.id))
|
||||
|
||||
if not pw_hash or bcrypt.checkpw(pw_bytes, pw_hash_bytes):
|
||||
|
|
Loading…
Reference in a new issue