aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/src/components/UpdateNotification.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/updatenotification/src/components/UpdateNotification.vue')
-rw-r--r--apps/updatenotification/src/components/UpdateNotification.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue
index 3fc577cab90..3ba6bf5bd69 100644
--- a/apps/updatenotification/src/components/UpdateNotification.vue
+++ b/apps/updatenotification/src/components/UpdateNotification.vue
@@ -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
})