From a9333c4f4badb127fca9beca6d1ad0b5933ecc0e Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 3 Sep 2017 12:42:25 +0200 Subject: mod_mam: Clone stanza before stripping stanza id after carbons --- plugins/mod_mam/mod_mam.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins') diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index a86697e8..cab3e95c 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -314,6 +314,7 @@ end local function strip_stanza_id(event) local strip_by = jid_bare(event.origin.full_jid); + event.stanza = st.clone(event.stanza); event.stanza:maptags(function(tag) if not ( tag.attr.xmlns == xmlns_st_id and tag.attr.by == strip_by ) then return tag; -- cgit v1.2.3