mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
Irssi lost channel key for secret/private channels after join.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1835 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
880de0fe12
commit
44270041c2
2 changed files with 18 additions and 6 deletions
|
|
@ -408,8 +408,14 @@ static void event_channel_mode(IRC_SERVER_REC *server, const char *data,
|
|||
|
||||
params = event_get_params(data, 3 | PARAM_FLAG_GETREST, NULL, &channel, &mode);
|
||||
chanrec = irc_channel_find(server, channel);
|
||||
if (chanrec != NULL)
|
||||
if (chanrec != NULL) {
|
||||
if (chanrec->key != NULL && strchr(mode, 'k') == NULL) {
|
||||
/* we joined the channel with a key,
|
||||
but it didn't have +k mode.. */
|
||||
parse_channel_modes(chanrec, NULL, "-k");
|
||||
}
|
||||
parse_channel_modes(chanrec, nick, mode);
|
||||
}
|
||||
channel_got_query(server, chanrec, channel);
|
||||
|
||||
g_free(params);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue