Add UUID to apps w/ add option to use App's id for virtual display (resolves #48)
This commit is contained in:
@@ -189,15 +189,19 @@
|
||||
})
|
||||
.then((resp) => {
|
||||
if (resp.status !== 200) {
|
||||
location.reload();
|
||||
return
|
||||
setTimeout(() => {
|
||||
location.reload();
|
||||
}, 1000);
|
||||
return;
|
||||
}
|
||||
})
|
||||
.catch((e) => {
|
||||
this.serverRestarting = false
|
||||
console.error(e)
|
||||
location.reload();
|
||||
return
|
||||
console.error(e);
|
||||
setTimeout(() => {
|
||||
location.reload();
|
||||
}, 1000);
|
||||
return;
|
||||
});
|
||||
},
|
||||
quit() {
|
||||
|
||||
Reference in New Issue
Block a user