aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-04-26 20:49:31 +0200
committerKim Alvefur <zash@zash.se>2020-04-26 20:49:31 +0200
commit2b47df3f0169bbe988d4b12759b0903a70112afe (patch)
tree501388924cc264d72216d97b404e2438b128b222 /plugins
parent2853b3ac5db9ecefacbfd575924c8ba663b7e7c2 (diff)
parent224351595ea39507511872d54c2469bdfd91652e (diff)
downloadprosody-2b47df3f0169bbe988d4b12759b0903a70112afe.tar.gz
prosody-2b47df3f0169bbe988d4b12759b0903a70112afe.zip
Merge 0.11->trunk
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_carbons.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua
index 0f8c7c60..5c17616c 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