mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Fixed possible printing bug with quit messages when the message is printed in the statuswindow
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3310 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
fa80d4913b
commit
3beaacf9ee
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ static void sig_message_quit(SERVER_REC *server, const char *nick,
|
|||
if (chans->len > 0)
|
||||
g_string_truncate(chans, chans->len-1);
|
||||
/* at least recode_fallback will be used */
|
||||
recoded = recode_in(reason, NULL);
|
||||
recoded = recode_in(reason, nick);
|
||||
printformat(server, print_channel, MSGLEVEL_QUITS,
|
||||
count <= 1 ? TXT_QUIT : TXT_QUIT_ONCE,
|
||||
nick, address, recoded, chans->str);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue