From da06f6833c67096a5c2c5aa500b4ea3457ee100e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:02:39 +0000 Subject: [PATCH] Set installLatestMajor when upgrade-to-latest-major button is clicked Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/7b977c85-9b74-4027-a536-152e49a01976 Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com> --- php/src/Controller/DockerController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/php/src/Controller/DockerController.php b/php/src/Controller/DockerController.php index e0e4496e..3def143b 100644 --- a/php/src/Controller/DockerController.php +++ b/php/src/Controller/DockerController.php @@ -329,6 +329,8 @@ readonly class DockerController { } public function RunNextcloudUpgradeToLatestMajor(Request $request, Response $response, array $args) : Response { + $this->configurationManager->installLatestMajor = '33'; + // Get streaming response start and closure $nonbufResp = $this->startStreamingResponse($response); $body = $nonbufResp->getBody();