diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-10-07 11:34:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 11:34:57 +0200 |
commit | 67704a964358904662a104abf95269cd2838347b (patch) | |
tree | 8fb99780301b70e917038be032c343c87d763652 /lib/private | |
parent | fd178b92f63cf6826677b5c0466cec3848b51d32 (diff) | |
parent | 03d156a824c710d795b13ec1f136f3197c2383f3 (diff) | |
download | nextcloud-server-67704a964358904662a104abf95269cd2838347b.tar.gz nextcloud-server-67704a964358904662a104abf95269cd2838347b.zip |
Merge pull request #23252 from nextcloud/fix/l10n/activities
Use the correct l10n for activities
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Server.php b/lib/private/Server.php index ffe91e93f88..75b35433225 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -694,7 +694,7 @@ class Server extends ServerContainer implements IServerContainer { }); $this->registerService(\OCP\Activity\IManager::class, function (Server $c) { - $l10n = $this->get(IFactory::class)->get('activity'); + $l10n = $this->get(IFactory::class)->get('lib'); return new \OC\Activity\Manager( $c->getRequest(), $c->getUserSession(), |