Skip to content

Commit

Permalink
Merge pull request #40135 from summersab/refactor/OC-Server-getEventL…
Browse files Browse the repository at this point in the history
…ogger
  • Loading branch information
skjnldsv authored Feb 23, 2024
2 parents 9eece36 + e69ca06 commit 09b1f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ public function __construct($webRoot, \OC\Config $config) {

$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) {
Expand Down

0 comments on commit 09b1f04

Please sign in to comment.