summaryrefslogtreecommitdiffstats
path: root/chat/js
diff options
context:
space:
mode:
Diffstat (limited to 'chat/js')
-rw-r--r--chat/js/chat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat/js/chat.js b/chat/js/chat.js
index a4bc466..730e655 100644
--- a/chat/js/chat.js
+++ b/chat/js/chat.js
@@ -848,9 +848,9 @@ var ajaxChat = {
},
startRetryTimer: function() {
- console.log('startRetryTimer');
var retryTimerDelay = (this.inactiveTimeout*6000 - this.timerRate)/4 + this.timerRate;
this.clearRetryTimer();
+ console.log('startRetryTimer');
this.retryTimer = setTimeout(this.forceNewRequest, retryTimerDelay);
},