diff --git a/static/js/mdns-browser/main.js b/static/js/mdns-browser/main.js index 1372413..46d85e2 100644 --- a/static/js/mdns-browser/main.js +++ b/static/js/mdns-browser/main.js @@ -142,13 +142,13 @@ ServiceFinder.prototype.onReceive_ = function(info) { byIP[ptr] = true; }.bind(this)); - // Ping! Something new is here. Only update every 25ms. + // Ping! Something new is here. Only update every 500ms. if (!this.callback_pending_) { this.callback_pending_ = true; setTimeout(function() { this.callback_pending_ = undefined; this.callback_(); - }.bind(this), 25); + }.bind(this), 500); } };