mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2026-04-18 06:10:01 +00:00
Fixed issue with context being lost, causing invalid mDNS discoveries
This commit is contained in:
@@ -119,13 +119,13 @@ NvHTTP.prototype = {
|
||||
this._consecutivePollFailures = 0;
|
||||
this.online = true;
|
||||
|
||||
onComplete();
|
||||
onComplete(this);
|
||||
}.bind(this), function() {
|
||||
if (++this._consecutivePollFailures >= 3) {
|
||||
this.online = false;
|
||||
}
|
||||
|
||||
onComplete();
|
||||
onComplete(this);
|
||||
}.bind(this));
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user