~singpolyma/biboumi

8409e50c1a28cc87799a8d9c67a90abf250ff6d5 — louiz’ 6 years ago 2d9f516
Fix a subtle iid parsing error in the adhoc code
1 files changed, 1 insertions(+), 1 deletions(-)

M src/xmpp/biboumi_component.cpp
M src/xmpp/biboumi_component.cpp => src/xmpp/biboumi_component.cpp +1 -1
@@ 436,7 436,7 @@ void BiboumiComponent::handle_iq(const Stanza& stanza)

          // Depending on the 'to' jid in the request, we use one adhoc
          // command handler or an other
          Iid iid(to.local, {});
          Iid iid(to.local, {'#', '&'});
          AdhocCommandsHandler* adhoc_handler;
          if (to.local.empty())
            adhoc_handler = &this->adhoc_commands_handler;