Software /
code /
prosody
Changeset
12018:c65789f5004e
mod_admin_shell: Only check that local users exist locally
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 06 Dec 2021 22:23:38 +0100 |
parents | 12017:b3f040e57835 |
children | 12019:a0b6896bb538 |
files | plugins/mod_admin_shell.lua |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_shell.lua Thu Apr 15 15:39:35 2021 +0200 +++ b/plugins/mod_admin_shell.lua Mon Dec 06 22:23:38 2021 +0100 @@ -1335,9 +1335,7 @@ if new_roles == nil then host, new_roles = userhost, host; end if not prosody.hosts[host] then return nil, "No such host: "..host; - elseif not prosody.hosts[userhost] then - return nil, "No such host: "..userhost; - elseif not um.user_exists(username, userhost) then + elseif prosody.hosts[userhost] and not um.user_exists(username, userhost) then return nil, "No such user"; end return um.set_roles(jid, host, coerce_roles(new_roles));