mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue