Add UUID to apps w/ add option to use App's id for virtual display (resolves #48)

This commit is contained in:
Yukino Song
2024-09-22 05:52:00 +08:00
parent 4d5cc526b5
commit 80fb7efc3d
8 changed files with 213 additions and 158 deletions

View File

@@ -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() {