summaryrefslogtreecommitdiffstats
path: root/apps/theming
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2021-10-13 11:37:22 +0200
committerGitHub <noreply@github.com>2021-10-13 11:37:22 +0200
commit4cae2cc06cdaadb797ab6bedc6dc4da8b90f85c9 (patch)
tree281c9140c796806a99c591df619c11b1ec4e4fbd /apps/theming
parente163d199d810562da8bc959bf8be843ddbeac118 (diff)
parent37f40cdd468a2826f6269bacc81ff74d8c606d23 (diff)
downloadnextcloud-server-4cae2cc06cdaadb797ab6bedc6dc4da8b90f85c9.tar.gz
nextcloud-server-4cae2cc06cdaadb797ab6bedc6dc4da8b90f85c9.zip
Merge pull request #29004 from nextcloud/bugfix/noid/fix-translated-app-details
Fix translated app details
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/lib/Controller/ThemingController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php
index 270181e42d2..6d4bd4bae60 100644
--- a/apps/theming/lib/Controller/ThemingController.php
+++ b/apps/theming/lib/Controller/ThemingController.php
@@ -378,7 +378,7 @@ class ThemingController extends Controller {
$startUrl = $this->urlGenerator->getBaseUrl();
$description = $this->themingDefaults->getSlogan();
} else {
- $info = $this->appManager->getAppInfo($app);
+ $info = $this->appManager->getAppInfo($app, false, $this->l10n->getLanguageCode());
$name = $info['name'] . ' - ' . $this->themingDefaults->getName();
$shortName = $info['name'];
if (strpos($this->request->getRequestUri(), '/index.php/') !== false) {