fix(ui): properly handle boolean json responses (#3626)

This commit is contained in:
ReenigneArcher
2025-02-02 12:34:02 -05:00
committed by GitHub
parent a995e578fa
commit 6efc687036
5 changed files with 18 additions and 17 deletions

View File

@@ -94,10 +94,10 @@
method: "POST",
body: JSON.stringify(this.passwordData),
}).then((r) => {
if (r.status == 200) {
if (r.status === 200) {
r.json().then((rj) => {
if (rj.status.toString() === "true") {
this.success = true;
this.success = rj.status;
if (this.success === true) {
setTimeout(() => {
document.location.reload();
}, 5000);