diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-07-17 18:49:32 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-07-17 18:49:32 +0100 |
commit | 57ac7ac17311968ad38c317681b5cc79e7747b78 (patch) | |
tree | b778b1a583eb31566b987dfa6f3dbc70a03629f0 /plugins | |
parent | 595c902284fbb1ad6a7662703a6926906f494ddc (diff) | |
download | prosody-57ac7ac17311968ad38c317681b5cc79e7747b78.tar.gz prosody-57ac7ac17311968ad38c317681b5cc79e7747b78.zip |
Backed out changeset 0bf0ff3b0f91 (incorrect fix)
Diffstat (limited to 'plugins')
-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 338f07be..fc22a630 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(jid_bare(stanza.attr.from).." invited you to the room "..room.jid..(reason == "" and (" ("..reason..")") or "")) + :text(invite.attr.from.." invited you to the room "..room.jid..(reason == "" and (" ("..reason..")") or "")) :up(); end end); |