aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Schmit <maxschm@hotmail.com>2024-12-17 19:37:07 +0100
committerskjnldsv <skjnldsv@protonmail.com>2025-01-07 20:16:06 +0100
commitfbec19c0d7744e9be6ca0f86bd7808cf4f0e1a47 (patch)
tree444cd315bc2ed66ad0645eb499716e42692f2658
parentbd9a88bb053d898867664447e8780d713de7d1bd (diff)
downloadnextcloud-server-fbec19c0d7744e9be6ca0f86bd7808cf4f0e1a47.tar.gz
nextcloud-server-fbec19c0d7744e9be6ca0f86bd7808cf4f0e1a47.zip
fix(files): updateAll method
Signed-off-by: Max Schmit <maxschm@hotmail.com>
-rw-r--r--AUTHORS1
-rw-r--r--apps/settings/src/components/AppList.vue2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index d6c8f3f6f00..63debb040ac 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -314,6 +314,7 @@
- Max <max@nextcloud.com>
- Max Kovalenko <mxss1998@yandex.ru>
- Max Kunzelmann <maxdev@posteo.de>
+ - Max Schmit <maxschm@hotmail.com>
- Maxence Lange <maxence@artificial-owl.com>
- Maxence Lange <maxence@nextcloud.com>
- Maxence Lange <maxence@pontapreta.net>
diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue
index 8d874982e0d..860b9e13317 100644
--- a/apps/settings/src/components/AppList.vue
+++ b/apps/settings/src/components/AppList.vue
@@ -326,7 +326,7 @@ export default {
this.apps
.filter(app => app.update)
.map((app) => limit(() => {
- this.update(app.id)
+ app.update(app.id)
}))
},
},