diff options
author | louiz’ <louiz@louiz.org> | 2016-09-04 23:11:42 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-09-04 23:11:42 +0200 |
commit | 2c6132f3ee8d29cd733019b34b0e6b8740a1e3f9 (patch) | |
tree | b3a40653ee3c41c337cb1938544abf5f7d92169e | |
parent | 3047bd41b212390da8e3a4dbcf351e79879042dd (diff) | |
download | biboumi-2c6132f3ee8d29cd733019b34b0e6b8740a1e3f9.tar.gz biboumi-2c6132f3ee8d29cd733019b34b0e6b8740a1e3f9.tar.bz2 biboumi-2c6132f3ee8d29cd733019b34b0e6b8740a1e3f9.tar.xz biboumi-2c6132f3ee8d29cd733019b34b0e6b8740a1e3f9.zip |
Add 2 missing namespaces in our disco#info result
-rw-r--r-- | src/xmpp/biboumi_component.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index a2fda60..246ea95 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -674,7 +674,7 @@ void BiboumiComponent::send_self_disco_info(const std::string& id, const std::st identity["type"] = "irc"; identity["name"] = "Biboumi XMPP-IRC gateway"; query.add_child(std::move(identity)); - for (const char* ns: {DISCO_INFO_NS, MUC_NS, ADHOC_NS, PING_NS}) + for (const char* ns: {DISCO_INFO_NS, MUC_NS, ADHOC_NS, PING_NS, MAM_NS, VERSION_NS}) { XmlNode feature("feature"); feature["var"] = ns; |