From b0fab4ae9da5d0cc386d59f723a28e36baae52f5 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 0b9b7e6a..c31de6f5 100644 --- a/php/src/Controller/DockerController.php +++ b/php/src/Controller/DockerController.php @@ -334,6 +334,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();