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>2020-10-21 10:03:59 +0300
committerJoas Schilling <coding@schilljs.com>2020-10-21 10:03:59 +0300
commitab443ee9f2dcc25e338d995b80faf5d65b8e4fac (patch)
tree4afe8fe51bc5b493b877a3902004a9cd1f653620 /lib
parent21122fa6a365914a33bcbdf4989dd80d9a517caa (diff)
Update comments manager constructor
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Chat/CommentsManager.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Chat/CommentsManager.php b/lib/Chat/CommentsManager.php
index f48bbda12..afc979ccb 100644
--- a/lib/Chat/CommentsManager.php
+++ b/lib/Chat/CommentsManager.php
@@ -30,6 +30,7 @@ use OCP\Comments\IComment;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IConfig;
use OCP\IDBConnection;
+use OCP\IInitialStateService;
use Psr\Log\LoggerInterface;
class CommentsManager extends Manager {
@@ -41,9 +42,10 @@ class CommentsManager extends Manager {
IDBConnection $db,
LoggerInterface $logger,
IConfig $config,
+ IInitialStateService $initialStateService,
ITimeFactory $timeFactory
) {
- parent::__construct($db, $logger, $config);
+ parent::__construct($db, $logger, $config, $initialStateService);
$this->timeFactory = $timeFactory;
}