diff options
author | louiz’ <louiz@louiz.org> | 2017-03-08 22:09:57 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-03-08 22:09:57 +0100 |
commit | 38ff50f5d2ca356f659429ff57546bd2364a0fef (patch) | |
tree | 3f7ff07c382758b53681a3e8656fec64f6d6dbee /src/bridge | |
parent | 27195a9dd48c0adbd82d25270f1a9214a705c7ef (diff) | |
download | biboumi-38ff50f5d2ca356f659429ff57546bd2364a0fef.tar.gz biboumi-38ff50f5d2ca356f659429ff57546bd2364a0fef.tar.bz2 biboumi-38ff50f5d2ca356f659429ff57546bd2364a0fef.tar.xz biboumi-38ff50f5d2ca356f659429ff57546bd2364a0fef.zip |
Don’t send the unavailable presence to all resources, in the virtual channel
Diffstat (limited to 'src/bridge')
-rw-r--r-- | src/bridge/bridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bridge/bridge.cpp b/src/bridge/bridge.cpp index 7e2d8c1..701ee11 100644 --- a/src/bridge/bridge.cpp +++ b/src/bridge/bridge.cpp @@ -62,7 +62,7 @@ void Bridge::shutdown(const std::string& exit_message) for (auto it = this->irc_clients.begin(); it != this->irc_clients.end(); ++it) { it->second->send_quit_command(exit_message); - it->second->leave_dummy_channel(exit_message); + it->second->leave_dummy_channel(exit_message, ""); } } |