diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-04-22 20:13:02 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-04-22 20:13:02 +0200 |
commit | 98ef49e78734b1d9cc3b0145ad256b8f14b769b6 (patch) | |
tree | 648f122f66a89e75d14e4363963178bf5f35f787 | |
parent | 0b4f761e314fe9055ed2bc353a699454a194a5d6 (diff) | |
download | biboumi-98ef49e78734b1d9cc3b0145ad256b8f14b769b6.tar.gz biboumi-98ef49e78734b1d9cc3b0145ad256b8f14b769b6.tar.bz2 biboumi-98ef49e78734b1d9cc3b0145ad256b8f14b769b6.tar.xz biboumi-98ef49e78734b1d9cc3b0145ad256b8f14b769b6.zip |
Fix the kick by correctly using the from and to attributes
-rw-r--r-- | src/xmpp/xmpp_component.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/xmpp_component.cpp b/src/xmpp/xmpp_component.cpp index 17afd63..78149c4 100644 --- a/src/xmpp/xmpp_component.cpp +++ b/src/xmpp/xmpp_component.cpp @@ -380,7 +380,7 @@ void XmppComponent::handle_iq(const Stanza& stanza) } Bridge* bridge = this->get_user_bridge(from); - Jid to(from); + Jid to(to_str); std::string error_type("cancel"); std::string error_name("internal-server-error"); |