From b6ac189db1e625ceef665056c29ba730b756ee46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 10 Oct 2023 13:19:49 +0200 Subject: [PATCH] fix: Properly provide instance id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Service/InitialStateService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/InitialStateService.php b/lib/Service/InitialStateService.php index 8afdcac290..b96376ed2d 100644 --- a/lib/Service/InitialStateService.php +++ b/lib/Service/InitialStateService.php @@ -53,7 +53,7 @@ public function provideCapabilities(): void { $this->initialState->provideInitialState('productName', $this->capabilitiesService->getProductName()); $this->initialState->provideInitialState('hasDrawSupport', $this->capabilitiesService->hasDrawSupport()); $this->initialState->provideInitialState('hasNextcloudBranding', $this->capabilitiesService->hasNextcloudBranding()); - $this->initialState->provideInitialState('instanceid', $this->config->getSystemValue('instanceid')); + $this->initialState->provideInitialState('instanceId', $this->config->getSystemValue('instanceid')); $this->provideOptions();