diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-07-17 18:15:15 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-07-17 18:15:15 +0100 |
commit | 6c719ffd0ceaabd03c6338f8d60a6293831402d6 (patch) | |
tree | 351e0e86430e5a4d689a9f9876f3c3e2a9dc701c | |
parent | ef2782cb25c435633a8d315652047ca1bb191f13 (diff) | |
download | prosody-6c719ffd0ceaabd03c6338f8d60a6293831402d6.tar.gz prosody-6c719ffd0ceaabd03c6338f8d60a6293831402d6.zip |
MUC: Use JID from correct place when adding <body> to mediated invites (thanks Link Mauve/lovetox)
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index fc22a630..338f07be 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -1088,7 +1088,7 @@ module:hook("muc-invite", function(event) local invite = stanza:get_child("x", "http://jabber.org/protocol/muc#user"):get_child("invite"); local reason = invite:get_child_text("reason") or ""; stanza:tag("body") - :text(invite.attr.from.." invited you to the room "..room.jid..(reason == "" and (" ("..reason..")") or "")) + :text(jid_bare(stanza.attr.from).." invited you to the room "..room.jid..(reason == "" and (" ("..reason..")") or "")) :up(); end end); |