Skip to content

Commit

Permalink
fix: Properly provide instance id
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr committed Oct 10, 2023
1 parent 17389a7 commit b6ac189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/InitialStateService.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit b6ac189

Please sign in to comment.