From 0e2f232debd89320b464887a9ce18c9a070b2d95 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Thu, 20 Feb 2025 14:13:25 +0100 Subject: [PATCH] Revert "fix(files): updateAll method" This reverts commit fbec19c0d7744e9be6ca0f86bd7808cf4f0e1a47. --- AUTHORS | 1 - apps/settings/src/components/AppList.vue | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 63debb040ac..d6c8f3f6f00 100644 --- a/AUTHORS +++ b/AUTHORS @@ -314,7 +314,6 @@ - Max - Max Kovalenko - Max Kunzelmann - - Max Schmit - Maxence Lange - Maxence Lange - Maxence Lange diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue index a4ca6d94c60..cfc778fe409 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(() => { - app.update(app.id) + this.update(app.id) })) }, },