From bfe91dfb5f55807f6b2f3d5567e39fd959b81bef Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 17 Jul 2018 19:32:36 +0100 Subject: MUC: Fix inverted logic () --- plugins/muc/muc.lib.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index fc22a630..ba9e7c04 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(invite.attr.from.." invited you to the room "..room.jid..(reason ~= "" and (" ("..reason..")") or "")) :up(); end end); -- cgit v1.2.3