mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Merge pull request #40135 from summersab/refactor/OC-Server-getEventLogger
This commit is contained in:
commit
09b1f049bd
1 changed files with 1 additions and 1 deletions
|
|
@ -716,7 +716,7 @@ class Server extends ServerContainer implements IServerContainer {
|
|||
|
||||
$this->registerService('RedisFactory', function (Server $c) {
|
||||
$systemConfig = $c->get(SystemConfig::class);
|
||||
return new RedisFactory($systemConfig, $c->getEventLogger());
|
||||
return new RedisFactory($systemConfig, $c->get(IEventLogger::class));
|
||||
});
|
||||
|
||||
$this->registerService(\OCP\Activity\IManager::class, function (Server $c) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue