diff options
author | Kim Alvefur <zash@zash.se> | 2020-04-26 20:39:39 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-04-26 20:39:39 +0200 |
commit | 347a7b20c96566722a9ee5c55228840dfbd89974 (patch) | |
tree | 48061341fd26dc23735c9f567f2238e051da5e08 | |
parent | 29a4d0f107bea49e6e4ec657cd7929f3f25881a2 (diff) | |
download | prosody-347a7b20c96566722a9ee5c55228840dfbd89974.tar.gz prosody-347a7b20c96566722a9ee5c55228840dfbd89974.zip |
mod_carbons: Fix handling of incoming MUC PMs #1540
27f5db07bec9 fixed this wrong. The code is supposed to check if the
stanza is NOT sent to your bare JID. A MUC PM is always sent to your
full JID. Hopefully nobody sends MUC invites to full JIDs, because those
would be skipped by this as well.
-rw-r--r-- | plugins/mod_carbons.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua index 1dcd4a07..79d3e737 100644 --- a/plugins/mod_carbons.lua +++ b/plugins/mod_carbons.lua @@ -69,7 +69,7 @@ local function message_handler(event, c2s) elseif stanza:get_child("no-copy", "urn:xmpp:hints") then module:log("debug", "Message has no-copy hint, ignoring"); return - elseif not c2s and bare_jid == orig_from and stanza:get_child("x", "http://jabber.org/protocol/muc#user") then + elseif not c2s and bare_jid ~= orig_to and stanza:get_child("x", "http://jabber.org/protocol/muc#user") then module:log("debug", "MUC PM, ignoring"); return end |