mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #52374 from nextcloud/fix/updatenotification/applist-error-handling
This commit is contained in:
commit
0567332af1
3 changed files with 5 additions and 5 deletions
|
|
@ -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
Loading…
Reference in a new issue