Merge pull request #30119 from nextcloud/bugfix/noid/direct-editor-translation

Use proper translation source for direct editing
pull/30304/head
azul 2021-12-16 19:09:59 +07:00 committed by GitHub
commit f001cc73e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -82,7 +82,7 @@ class Manager implements IManager {
$this->connection = $connection;
$this->userId = $userSession->getUser() ? $userSession->getUser()->getUID() : null;
$this->rootFolder = $rootFolder;
$this->l10n = $l10nFactory->get('core');
$this->l10n = $l10nFactory->get('lib');
$this->encryptionManager = $encryptionManager;
}