From 3851d7d5926378f48ba81e3c2ff9bd8218516975 Mon Sep 17 00:00:00 2001 From: Robin Windey Date: Thu, 13 Feb 2025 21:55:07 +0000 Subject: [PATCH] Fix AppManager method name * According to https://github.com/nextcloud/server/commit/9e327a5890735d2a4dc3b7f88ab5fd571119c21d#diff-e69a8a7fe6497b2b323e5b1247790347fc614a007e88ef017bad764781591ffbL413 Signed-off-by: Robin Windey --- lib/Controller/ExAppsPageController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Controller/ExAppsPageController.php b/lib/Controller/ExAppsPageController.php index 9a63ea36..ae6fddb7 100644 --- a/lib/Controller/ExAppsPageController.php +++ b/lib/Controller/ExAppsPageController.php @@ -445,7 +445,7 @@ public function uninstallApp(string $appId, bool $removeContainer = true, bool $ #[PasswordConfirmationRequired] public function force(string $appId): JSONResponse { $appId = OC_App::cleanAppId($appId); - $this->appManager->ignoreNextcloudRequirementForApp($appId); + $this->appManager->overwriteNextcloudRequirement($appId); return new JSONResponse(); }