aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-05-11 21:14:02 +0200
committerKim Alvefur <zash@zash.se>2020-05-11 21:14:02 +0200
commit9a35d506e24a7441b59abfcbc25d1e7f85b3b1d9 (patch)
tree7bb03a1c9bcccc8048e89f869221796eecb08aa7 /plugins
parentf66524ac88716201ddb777411dba3419526ba0de (diff)
downloadprosody-9a35d506e24a7441b59abfcbc25d1e7f85b3b1d9.tar.gz
prosody-9a35d506e24a7441b59abfcbc25d1e7f85b3b1d9.zip
mod_muc_mam: Remove spoofed archive IDs before archiving, fix #1552
The stanza-id added during archiving looks exactly like what should be stripped, so the stripping must happen before archiving. Getting priorities right is hard! Also no test coverage yet.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_muc_mam.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua
index 88018f72..711bf163 100644
--- a/plugins/mod_muc_mam.lua
+++ b/plugins/mod_muc_mam.lua
@@ -324,7 +324,7 @@ module:hook("muc-broadcast-message", function (event)
return tag;
end);
-end, 0);
+end, 1);
-- Handle messages
local function save_to_history(self, stanza)