Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-10-27 15:45:32 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-27 15:45:32 +0300
commit483c3a0c8e674ff5a1aad2d5a711d1a21706f598 (patch)
tree3e27dc21e7e587b96d4a75f9065016e9f610b57c /lib
parent5d5d87f0e04c9722ebe3756c1971edd54e5c6e85 (diff)
Update initial-state handling to new service
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/TInitialState.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/TInitialState.php b/lib/TInitialState.php
index e7de0ee45..05229adad 100644
--- a/lib/TInitialState.php
+++ b/lib/TInitialState.php
@@ -73,13 +73,13 @@ trait TInitialState {
$this->talkConfig->getDialInInfo()
);
- $this->initialStateService->provideInitialState(
- 'talk', 'grid_videos_limit',
+ $this->initialState->provideInitialState(
+ 'grid_videos_limit',
$this->talkConfig->getGridVideosLimit()
);
- $this->initialStateService->provideInitialState(
- 'talk', 'grid_videos_limit_enforced',
+ $this->initialState->provideInitialState(
+ 'grid_videos_limit_enforced',
$this->talkConfig->getGridVideosLimitEnforced()
);
}