mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05: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:
parent
5fc95d018a
commit
0b76253492
@ -377,7 +377,7 @@ static int unignore_timeout(void)
|
|||||||
IGNORE_REC *rec = tmp->data;
|
IGNORE_REC *rec = tmp->data;
|
||||||
|
|
||||||
next = tmp->next;
|
next = tmp->next;
|
||||||
if (now >= rec->unignore_time) {
|
if (rec->unignore_time > 0 && now >= rec->unignore_time) {
|
||||||
rec->level = 0;
|
rec->level = 0;
|
||||||
ignore_update_rec(rec);
|
ignore_update_rec(rec);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user