From fb52b2852c9096ab480f08bb13b20d6c7e216972 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Wed, 11 Jul 2012 16:55:27 +0200 Subject: [PATCH] Decrease the delay from post succesful to thread update from 1s to .5s. --- 4chan_x.user.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index a2d812795..4182e6c73 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -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(); diff --git a/script.coffee b/script.coffee index d7bf4a74c..4ac725f4a 100644 --- a/script.coffee +++ b/script.coffee @@ -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()