Remove redundant assignment.

The publish immediately overwrites this time so there isn't much
point setting it.
pull/313/head
Mark Hindess 2014-07-30 13:58:40 +01:00
parent a8c491bf2b
commit 195f581da7
1 changed files with 0 additions and 1 deletions

View File

@ -77,7 +77,6 @@ function start() {
heartbeatTimer = setInterval(function() {
var now = Date.now();
if (now-lastSentTime > webSocketKeepAliveTime) {
lastSentTime = now;
publish("hb",lastSentTime);
}
}, webSocketKeepAliveTime);