diff options
author | louiz’ <louiz@louiz.org> | 2017-03-08 22:28:00 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-03-08 22:28:00 +0100 |
commit | a0a2de3b4d2facb25bbead59873cbf7f58f1d62a (patch) | |
tree | 51aa16284f21d402ee879ca99c15429ba2be4e46 /src/bridge | |
parent | 38ff50f5d2ca356f659429ff57546bd2364a0fef (diff) | |
download | biboumi-a0a2de3b4d2facb25bbead59873cbf7f58f1d62a.tar.gz biboumi-a0a2de3b4d2facb25bbead59873cbf7f58f1d62a.tar.bz2 biboumi-a0a2de3b4d2facb25bbead59873cbf7f58f1d62a.tar.xz biboumi-a0a2de3b4d2facb25bbead59873cbf7f58f1d62a.zip |
Revert "Don’t send the unavailable presence to all resources, in the virtual channel"
This reverts commit 38ff50f5d2ca356f659429ff57546bd2364a0fef.
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 701ee11..7e2d8c1 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); } } |