Fix launch app says failed on web ui

This commit is contained in:
Yukino Song
2025-02-07 20:05:29 +08:00
parent 773a8b6576
commit 9481418e0d

View File

@@ -484,7 +484,7 @@
})
.then(r => r.json())
.then(r => {
if (r.status == "true") {
if (r.status) {
alert(this.$t('apps.launch_success'));
} else {
alert(this.$t('apps.launch_failed') + r.error);