1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

Ignores without -time were unignored immediately..

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1337 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-03-04 02:49:01 +00:00 committed by cras
parent 5fc95d018a
commit 0b76253492

View File

@ -377,7 +377,7 @@ static int unignore_timeout(void)
IGNORE_REC *rec = tmp->data;
next = tmp->next;
if (now >= rec->unignore_time) {
if (rec->unignore_time > 0 && now >= rec->unignore_time) {
rec->level = 0;
ignore_update_rec(rec);
}