diff options
author | louiz’ <louiz@louiz.org> | 2016-10-03 21:35:16 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-03 21:35:16 +0200 |
commit | 28f1dd76548fc9a7de3920d938903f68cdfffe0d (patch) | |
tree | 3c340ad1f8ecb71223c8edf448b086e1b77d1f2c /src/xmpp/biboumi_component.cpp | |
parent | 45aebb8d8a3088058ae65b154496ce1fb2e3d94d (diff) | |
download | biboumi-28f1dd76548fc9a7de3920d938903f68cdfffe0d.tar.gz biboumi-28f1dd76548fc9a7de3920d938903f68cdfffe0d.tar.bz2 biboumi-28f1dd76548fc9a7de3920d938903f68cdfffe0d.tar.xz biboumi-28f1dd76548fc9a7de3920d938903f68cdfffe0d.zip |
Make version requests work with global user JIDs as well
fix #3210
Diffstat (limited to 'src/xmpp/biboumi_component.cpp')
-rw-r--r-- | src/xmpp/biboumi_component.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index f43b5e0..1e66b62 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -412,7 +412,8 @@ void BiboumiComponent::handle_iq(const Stanza& stanza) else if ((query = stanza.get_child("query", VERSION_NS))) { Iid iid(to.local, bridge); - if (iid.type != Iid::Type::Server && !to.resource.empty()) + if ((iid.type == Iid::Type::Channel && !to.resource.empty()) || + (iid.type == Iid::Type::User)) { // Get the IRC user version std::string target; |