File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -722,14 +722,18 @@ htmlToArray(document.querySelectorAll(".btn.updateapps")).map(button => button.a
722
722
// get apps - don't auto-update custom apps since they need the
723
723
// customiser page running
724
724
let count = appsToUpdate . length ;
725
+ if ( ! count ) {
726
+ showToast ( "Update failed, no apps can be updated" , "error" ) ;
727
+ return ;
728
+ }
725
729
function updater ( ) {
726
- if ( ! appsToUpdate . length ) return Promise . reject ( "No apps can be updated ") ;
730
+ if ( ! appsToUpdate . length ) return Promise . resolve ( "Success ") ;
727
731
let app = appsToUpdate . pop ( ) ;
728
732
return updateApp ( app ) . then ( function ( ) {
729
733
return updater ( ) ;
730
734
} ) ;
731
735
}
732
- updater ( ) . then ( err => {
736
+ updater ( ) . then ( msg => {
733
737
showToast ( `Updated ${ count } apps` , "success" ) ;
734
738
} ) . catch ( err => {
735
739
showToast ( "Update failed, " + err , "error" ) ;
You can’t perform that action at this time.
0 commit comments