From d795c3994ad0acacf92b9afed237ff0b81fcd658 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 13 Sep 2018 15:11:08 +0100 Subject: MUC: Fix to correctly return 'node' in disco#info responses (thanks jc) --- plugins/muc/muc.lib.lua | 2 +- spec/scansion/muc_register.scs | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index c51f53e8..79fdd6e5 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -337,7 +337,7 @@ end function room_mt:get_disco_info(stanza) local node = stanza.tags[1].attr.node or ""; - local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#info", { node = node }); + local reply = st.reply(stanza):tag("query", { xmlns = "http://jabber.org/protocol/disco#info", node = node }); local event_name = "muc-disco#info"; local event_data = { room = self, reply = reply, stanza = stanza }; diff --git a/spec/scansion/muc_register.scs b/spec/scansion/muc_register.scs index fbc36461..b76055b1 100644 --- a/spec/scansion/muc_register.scs +++ b/spec/scansion/muc_register.scs @@ -132,7 +132,7 @@ Juliet sends: Juliet receives: - + @@ -286,6 +286,20 @@ Juliet receives: Romeo receives: +# Romeo checks whether he has reserved his own nick yet + +Romeo sends: + + + + +# But no nick is returned, as he hasn't registered yet! + +Romeo receives: + + + + # Romeo updates his own registration Romeo sends: @@ -346,7 +360,7 @@ Romeo sends: Romeo receives: - + -- cgit v1.2.3