core.usermanager: Correct formatting of not implemented error

Spaces, no hyphen, apparently.
This commit is contained in:
Kim Alvefur 2023-03-26 16:51:33 +02:00
parent 8720067f24
commit e53ef27a1c
2 changed files with 5 additions and 5 deletions

View file

@ -1535,7 +1535,7 @@ function def_env.user:create(jid, password, role)
end
local ok, err = um.enable_user(username, host);
if not ok and err ~= "method-not-implemented" then
if not ok and err ~= "method not implemented" then
return nil, "Could not enable user: "..err;
end
end