From 541acdf37288f4eadf8b7d2dd3df7e6458653a3a Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Fri, 27 Jun 2025 15:05:32 -0400 Subject: [PATCH] Explicit muc#traffic support --- xmpp/handlers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xmpp/handlers.go b/xmpp/handlers.go index f1d4052..0e4b893 100644 --- a/xmpp/handlers.go +++ b/xmpp/handlers.go @@ -999,6 +999,8 @@ func handleGetDiscoInfo(s xmpp.Sender, iq *stanza.IQ, di *stanza.DiscoInfo) { } } } + } else if di.Node == "http://jabber.org/protocol/muc#traffic" { + // noop yet, empty result as intended, TODO: add XHTML whenever supported } else { chatType, chatTypeErr := getTelegramChatType(iq.From, iq.To)