fix: message bug again..

This commit is contained in:
Dr.Lt.Data
2023-09-19 10:35:38 +09:00
parent 263ccec476
commit ef4e7a0ef0
2 changed files with 2 additions and 2 deletions

View File

@@ -215,7 +215,7 @@ async function fetchUpdates(update_check_checkbox) {
const response = await api.fetchApi(`/customnode/fetch_updates?mode=${mode}`);
if(response.status != 200 || response.status != 201) {
if(response.status != 200 && response.status != 201) {
app.ui.dialog.show('Failed to fetch updates.');
app.ui.dialog.element.style.zIndex = 9999;
return false;