mod_message: Return early on messages of type error (silences empty if branch warning) [luacheck]

This commit is contained in:
Kim Alvefur 2017-03-06 15:27:37 +01:00
parent 7e8dcd944e
commit 11dc53576d

View file

@ -20,7 +20,7 @@ local function process_to_bare(bare, origin, stanza)
local t = stanza.attr.type;
if t == "error" then
-- discard
return true; -- discard
elseif t == "groupchat" then
origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
elseif t == "headline" then