mod_muc_mam: Log error when unable to store stanza (fix #1480) [luacheck]

This commit is contained in:
Kim Alvefur 2019-12-23 23:32:49 +01:00
parent c37b1cc072
commit b10527f724

View file

@ -357,6 +357,8 @@ local function save_to_history(self, stanza)
if id then
schedule_cleanup(room_node);
stanza:add_direct_child(st.stanza("stanza-id", { xmlns = xmlns_st_id, by = self.jid, id = id }));
else
module:log("error", "Could not archive stanza: %s", err);
end
end