Small fix for the disconnected banner coming up when it shouldn't, just default to thinking we are connected and mock the onEmpty event. Will only get set to not connected if requests fail

pull/168/head
Beaudan 6 years ago
parent 8462864373
commit 0c104e5a53

@ -233,7 +233,8 @@
break;
case WebSocket.OPEN:
clearInterval(this.interval);
// if we've connected, we can wait for real empty event
// Default to connected, but lokinet is slow so we pretend empty event
this.onEmpty();
this.interval = null;
break;
case WebSocket.CLOSING:

@ -64,7 +64,7 @@
if (typeof handleRequest !== 'function') {
handleRequest = request => request.respond(404, 'Not found');
}
let connected = false;
let connected = true;
const jobQueue = new window.JobQueue();
const processMessages = async messages => {

Loading…
Cancel
Save