mod_external_services: Move error message to correct place (fix #1725)

This message was misplaced in c4599a7c534c when the @type and @host
check was introduced.
This commit is contained in:
Kim Alvefur 2022-03-23 15:29:01 +01:00
parent ea9ea67911
commit e950ca77eb

View file

@ -192,7 +192,7 @@ local function handle_credentials(event)
local action = stanza.tags[1];
if origin.type ~= "c2s" then
origin.send(st.error_reply(stanza, "auth", "forbidden", "The 'port' and 'type' attributes are required."));
origin.send(st.error_reply(stanza, "auth", "forbidden"));
return true;
end
@ -204,7 +204,7 @@ local function handle_credentials(event)
local requested_credentials = set.new();
for service in action:childtags("service") do
if not service.attr.type or not service.attr.host then
origin.send(st.error_reply(stanza, "modify", "bad-request"));
origin.send(st.error_reply(stanza, "modify", "bad-request", "The 'port' and 'type' attributes are required."));
return true;
end