mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
Merge 0.9->trunk
This commit is contained in:
commit
2b974f31e0
1 changed files with 1 additions and 1 deletions
|
@ -991,7 +991,7 @@ function def_env.user:password(jid, password)
|
|||
local username, host = jid_split(jid);
|
||||
if not hosts[host] then
|
||||
return nil, "No such host: "..host;
|
||||
elseif um.user_exists(username, host) then
|
||||
elseif not um.user_exists(username, host) then
|
||||
return nil, "No such user";
|
||||
end
|
||||
local ok, err = um.set_password(username, password, host);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue