From da0d7121f707116e031f61d835473887f62bb582 Mon Sep 17 00:00:00 2001 From: Kerrick Long Date: Fri, 15 Jul 2011 10:28:38 -0500 Subject: [PATCH] Whoops, that's supposed to be in milliseconds! --- js/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/common.js b/js/common.js index 67b32dc..a59df77 100644 --- a/js/common.js +++ b/js/common.js @@ -342,7 +342,7 @@ RedditAPI.prototype.getInfo = function (url, tabId) { req.open('GET', reqUrl, true); req.onreadystatechange = processInfo; req.send(null); - apiTimeout = setTimeout(handleTimeout, settings.get('timeoutLength')); + apiTimeout = setTimeout(handleTimeout, settings.get('timeoutLength') * 1000); }; /**