From 984d71838ec98a94101804e48a4536c64d75602c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Mon, 8 May 2017 23:01:21 +0200 Subject: Limit the number of rooms sent by default in the disco#items response fix #3219 --- src/xmpp/biboumi_component.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index c808eec..ad34ace 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -503,6 +503,8 @@ void BiboumiComponent::handle_iq(const Stanza& stanza) rs_info.max = std::atoi(max->get_inner().data()); } + if (rs_info.max == -1) + rs_info.max = 100; bridge->send_irc_channel_list_request(iid, id, from, std::move(rs_info)); stanza_error.disable(); } -- cgit v1.2.3