diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-04-11 16:39:39 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-04-11 16:39:39 +0200 |
commit | 2c2ebea3fdd80d519e3fc7c5966f3a194f1bd1fa (patch) | |
tree | cd1760dc9b406aa4fefb60315233de6de14f7496 /src/plugins/irc/irc-channel.h | |
parent | 85c5653713cd54600be73f1e7a06cc0f3862e7ed (diff) | |
download | weechat-2c2ebea3fdd80d519e3fc7c5966f3a194f1bd1fa.zip |
irc: do not rejoin channels where /part has been issued before reconnection to server (bug #33029)
Diffstat (limited to 'src/plugins/irc/irc-channel.h')
-rw-r--r-- | src/plugins/irc/irc-channel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/irc/irc-channel.h b/src/plugins/irc/irc-channel.h index 4a77e45b6..d170a10ab 100644 --- a/src/plugins/irc/irc-channel.h +++ b/src/plugins/irc/irc-channel.h @@ -52,6 +52,7 @@ struct t_irc_channel int has_quit_server; /* =1 if nick has quit (pv only), to */ /* display message when he's back */ int cycle; /* currently cycling (/part + /join) */ + int part; /* /part done on channel? */ int display_creation_date; /* 1 for displaying creation date */ int nick_completion_reset; /* 1 for resetting nick completion */ /* there was some join/part on chan */ |