Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-30 10:08:17 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-10-13 12:59:48 +0300
commit982f956342f4d233461ca893f148ab3f860cd2b0 (patch)
treeb14f3829f8c3adb7f1a3aef1cae8db4a1a31e734 /lib/private/legacy
parent164d118d8edf189ef6b8bfcca1af91197ce431db (diff)
Fix translated app details
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r--lib/private/legacy/OC_App.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php
index bca0a3dd08e..f197151edc4 100644
--- a/lib/private/legacy/OC_App.php
+++ b/lib/private/legacy/OC_App.php
@@ -981,13 +981,14 @@ class OC_App {
}
\OC::$server->getAppManager()->clearAppsCache();
- $appData = self::getAppInfo($appId);
+ $l = \OC::$server->getL10N('core');
+ $appData = self::getAppInfo($appId, false, $l->getLanguageCode());
$ignoreMaxApps = \OC::$server->getConfig()->getSystemValue('app_install_overwrite', []);
$ignoreMax = in_array($appId, $ignoreMaxApps, true);
\OC_App::checkAppDependencies(
\OC::$server->getConfig(),
- \OC::$server->getL10N('core'),
+ $l,
$appData,
$ignoreMax
);