mirror of
https://github.com/irssi/irssi.git
synced 2025-01-03 14:56:47 -05:00
don't update window->last_line timestamp with MSGLEVEL_NEVER text, so >1d
/SET autoclose_query setting works with "day changed" messagse. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2433 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c0980aacdd
commit
0bb2b6a9d4
@ -416,7 +416,8 @@ static void sig_print_text(TEXT_DEST_REC *dest, const char *text)
|
||||
|
||||
msg_beep_check(dest);
|
||||
|
||||
dest->window->last_line = time(NULL);
|
||||
if ((dest->level & MSGLEVEL_NEVER) == 0)
|
||||
dest->window->last_line = time(NULL);
|
||||
|
||||
/* add timestamp/server tag here - if it's done in print_line()
|
||||
it would be written to log files too */
|
||||
|
Loading…
Reference in New Issue
Block a user