Decrease the delay from post succesful to thread update from 1s to .5s.

This commit is contained in:
Nicolas Stepien 2012-07-11 16:55:27 +02:00
parent d0ec997182
commit fb52b2852c
2 changed files with 2 additions and 2 deletions

View File

@ -2514,7 +2514,7 @@
}
if (g.REPLY && Conf['Thread Updater'] && Conf['Auto Update This']) {
Updater.unsuccessfulFetchCount = 0;
setTimeout(Updater.update, 1000);
setTimeout(Updater.update, 500);
}
QR.status();
return QR.resetFileInput();

View File

@ -1976,7 +1976,7 @@ QR =
Unread.foresee.push postID
if g.REPLY and Conf['Thread Updater'] and Conf['Auto Update This']
Updater.unsuccessfulFetchCount = 0
setTimeout Updater.update, 1000
setTimeout Updater.update, 500
QR.status()
QR.resetFileInput()