Merge pull request #52374 from nextcloud/fix/updatenotification/applist-error-handling

This commit is contained in:
Kate 2025-04-24 12:24:41 +02:00 committed by GitHub
commit 0567332af1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -357,10 +357,10 @@ export default {
this.missingAppUpdates = data.ocs.data.missing
this.isListFetched = true
this.appStoreFailed = false
}).catch(({ data }) => {
}).catch(({ response }) => {
this.availableAppUpdates = []
this.missingAppUpdates = []
this.appStoreDisabled = data.ocs.data.appstore_disabled
this.appStoreDisabled = response.data.ocs.data.appstore_disabled
this.isListFetched = true
this.appStoreFailed = true
})

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long