diff options
author | louiz’ <louiz@louiz.org> | 2017-03-04 14:00:53 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-03-04 14:03:08 +0100 |
commit | d81c3ad5ac2c12130d90044b7597bf962a7cfe9e (patch) | |
tree | f5e9dec2fec5ceec917cc9c0b87371393a085b66 /src/xmpp/biboumi_component.cpp | |
parent | e6e37a6f209ae2e9416b0da03ff21469cb4645b8 (diff) | |
download | biboumi-d81c3ad5ac2c12130d90044b7597bf962a7cfe9e.tar.gz biboumi-d81c3ad5ac2c12130d90044b7597bf962a7cfe9e.tar.bz2 biboumi-d81c3ad5ac2c12130d90044b7597bf962a7cfe9e.tar.xz biboumi-d81c3ad5ac2c12130d90044b7597bf962a7cfe9e.zip |
Fix the order of from and to address in muc traffic info reply
And add a test for it.
fix #3238
Diffstat (limited to 'src/xmpp/biboumi_component.cpp')
-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 663e92e..2783b93 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -738,7 +738,7 @@ void BiboumiComponent::send_irc_server_disco_info(const std::string& id, const s this->send_stanza(iq); } -void BiboumiComponent::send_irc_channel_muc_traffic_info(const std::string id, const std::string& jid_from, const std::string& jid_to) +void BiboumiComponent::send_irc_channel_muc_traffic_info(const std::string id, const std::string& jid_to, const std::string& jid_from) { Stanza iq("iq"); { |