Skip to content

Commit b033af0

Browse files
committed
Fix every update ending with "Update failed, no apps can be updated"
1 parent 2385408 commit b033af0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

js/index.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -722,14 +722,18 @@ htmlToArray(document.querySelectorAll(".btn.updateapps")).map(button => button.a
722722
// get apps - don't auto-update custom apps since they need the
723723
// customiser page running
724724
let count = appsToUpdate.length;
725+
if (!count) {
726+
showToast("Update failed, no apps can be updated","error");
727+
return;
728+
}
725729
function updater() {
726-
if (!appsToUpdate.length) return Promise.reject("No apps can be updated");
730+
if (!appsToUpdate.length) return Promise.resolve("Success");
727731
let app = appsToUpdate.pop();
728732
return updateApp(app).then(function() {
729733
return updater();
730734
});
731735
}
732-
updater().then(err => {
736+
updater().then(msg => {
733737
showToast(`Updated ${count} apps`,"success");
734738
}).catch(err => {
735739
showToast("Update failed, "+err,"error");

0 commit comments

Comments
 (0)