diff options
author | lassulus <lassulus@googlemail.com> | 2013-11-07 14:09:38 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-11-07 14:09:38 +0100 |
commit | a60cc6eb1b4007f67fe67c1b2865c73e2c8e45db (patch) | |
tree | 90a99dee9870dd100f403279047443eced84ba64 /webchat | |
parent | e3027c0a6d34b89a2733e27a4be2074e34182288 (diff) |
webchat: smaller timeout
Diffstat (limited to 'webchat')
-rw-r--r-- | webchat/hello_web.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webchat/hello_web.js b/webchat/hello_web.js index 4d420268..9bcb70d0 100644 --- a/webchat/hello_web.js +++ b/webchat/hello_web.js @@ -17,7 +17,7 @@ var irc_reconnect = function() { //reconnt to irc irc_client.connect(); } -var pingTimeoutDelay = 5*60*1000 +var pingTimeoutDelay = 3*60*1000 var lastping = setTimeout(irc_reconnect, pingTimeoutDelay) var irc_client = new irc.Client('irc.freenode.net', 'kweb', { //create irc_client to talk to irc |