fix: incorrect nex password length
This commit is contained in:
parent
5e18940a00
commit
68dc89532c
3 changed files with 11 additions and 0 deletions
|
|
@ -126,6 +126,8 @@ impl Query {
|
|||
return None;
|
||||
}
|
||||
};
|
||||
|
||||
let nex_password = format!("{:a>16}",user.nex_password);
|
||||
|
||||
Some(UserInfo {
|
||||
username: user.username,
|
||||
|
|
@ -149,6 +151,8 @@ impl Query {
|
|||
.await
|
||||
.ok()?;
|
||||
|
||||
let nex_password = format!("{:a>16}",user.nex_password);
|
||||
|
||||
Some(UserInfo {
|
||||
username: user.username,
|
||||
account_level: user.account_level,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue