fix: fix grpc by adding padding for it as well
This commit is contained in:
parent
fcd39565fc
commit
64027f8317
1 changed files with 3 additions and 1 deletions
|
|
@ -77,7 +77,9 @@ impl grpc::account_server::Account for AccountService {
|
|||
.map_err(|_| Status::invalid_argument("No NEX account found"))?
|
||||
.nex_password;
|
||||
|
||||
Ok(Response::new(GetNexPasswordResponse { password }))
|
||||
let password_padded = format!("{:a>16}", password);
|
||||
|
||||
Ok(Response::new(GetNexPasswordResponse { password: password_padded }))
|
||||
}
|
||||
async fn update_pnid_permissions(
|
||||
&self,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue