diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-23 23:32:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-23 23:32:49 +0100 |
commit | 99f1926c30607810b895f9dc758af3085d9731de (patch) | |
tree | e6402eaa85a79cbb646d0ec5f4b5b1171e60e515 /plugins | |
parent | a13a26a43526e5a596c0a6e5a74d8ab3c1803043 (diff) | |
download | prosody-99f1926c30607810b895f9dc758af3085d9731de.tar.gz prosody-99f1926c30607810b895f9dc758af3085d9731de.zip |
mod_muc_mam: Log error when unable to store stanza (fix #1480) [luacheck]
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_muc_mam.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua index a2e3f81b..37e41157 100644 --- a/plugins/mod_muc_mam.lua +++ b/plugins/mod_muc_mam.lua @@ -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 |