summaryrefslogtreecommitdiff
path: root/src/irc/irc_client.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-10-23 23:58:03 +0200
committerlouiz’ <louiz@louiz.org>2016-10-23 23:58:03 +0200
commit00eb18bae8cf62d49f4b5d42aed8507fcca3c03c (patch)
tree7d1bd883ebb927d11e5fe42eaf14804d9c74d3fc /src/irc/irc_client.cpp
parent8b8bbceeb39b32b90f76a9c0beb3f7d30ed6fd7b (diff)
downloadbiboumi-00eb18bae8cf62d49f4b5d42aed8507fcca3c03c.tar.gz
biboumi-00eb18bae8cf62d49f4b5d42aed8507fcca3c03c.tar.bz2
biboumi-00eb18bae8cf62d49f4b5d42aed8507fcca3c03c.tar.xz
biboumi-00eb18bae8cf62d49f4b5d42aed8507fcca3c03c.zip
Refactor channel->parting to a new location
Diffstat (limited to 'src/irc/irc_client.cpp')
-rw-r--r--src/irc/irc_client.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index c301af0..9877806 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -502,6 +502,7 @@ void IrcClient::send_part_command(const std::string& chan_name, const std::strin
this->leave_dummy_channel(status_message);
else
this->send_message(IrcMessage("PART", {chan_name, status_message}));
+ channel->parting = true;
}
}