mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Fix missing parameter in mod_auth_internal_hashed.
This commit is contained in:
parent
acdb275b7b
commit
6ef96921f5
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ function new_hashpass_provider(host)
|
|||
scram_sha_1 = function(username, realm)
|
||||
local credentials = datamanager.load(username, host, "accounts") or {};
|
||||
if credentials.password then
|
||||
usermanager.set_password(username, credentials.password);
|
||||
usermanager.set_password(username, credentials.password, host);
|
||||
credentials = datamanager.load(username, host, "accounts") or {};
|
||||
end
|
||||
local salted_password, iteration_count, salt = credentials.hashpass, credentials.iteration_count, credentials.salt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue