diff options
author | Timo Sirainen <cras@irssi.org> | 2000-10-14 01:03:11 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-10-14 01:03:11 +0000 |
commit | d398247f762e111e82f418af142dd7e70d1d167a (patch) | |
tree | ebdc9a90306671794f34dbee22a96fd28e9876a0 /src/fe-common/irc/module-formats.c | |
parent | ad97695841d0121759c0dd980d8d54786415cb5f (diff) | |
download | irssi-d398247f762e111e82f418af142dd7e70d1d167a.zip |
Handle event "407 duplicate channel" correctly - happens when trying to
create !channel (/join !!channel) while it already exists.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@741 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/module-formats.c')
-rw-r--r-- | src/fe-common/irc/module-formats.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fe-common/irc/module-formats.c b/src/fe-common/irc/module-formats.c index 4b193840..e9d41684 100644 --- a/src/fe-common/irc/module-formats.c +++ b/src/fe-common/irc/module-formats.c @@ -55,6 +55,7 @@ FORMAT_REC fecommon_irc_formats[] = { { "joinerror_bad_key", "Cannot join to channel %_$0%_ %K(%nBad channel key%K)", 1, { 0 } }, { "joinerror_bad_mask", "Cannot join to channel %_$0%_ %K(%nBad channel mask%K)", 1, { 0 } }, { "joinerror_unavail", "Cannot join to channel %_$0%_ %K(%nChannel is temporarily unavailable%K)", 1, { 0 } }, + { "joinerror_duplicate", "Channel %_$0%_ already exists - cannot create it", 1, { 0 } }, { "channel_rejoin", "Channel %_$0%_ is temporarily unavailable, this is normally because of netsplits. Irssi will now automatically try to rejoin to this channel until the join is successfull. Use /RMREJOINS command if you wish to abort this.", 1, { 0 } }, { "inviting", "Inviting $0 to %_$1", 2, { 0, 0 } }, { "not_invited", "You have not been invited to a channel!", 0 }, |