diff options
author | Joas Schilling <coding@schilljs.com> | 2021-09-30 09:08:17 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-09-30 09:08:17 +0200 |
commit | 37f40cdd468a2826f6269bacc81ff74d8c606d23 (patch) | |
tree | 12a7f4a1ca8dcdd83757c54addb3be914255b7ed /apps/theming | |
parent | 5a469f54ab6877b690d585517186bb5fcf40546b (diff) | |
download | nextcloud-server-37f40cdd468a2826f6269bacc81ff74d8c606d23.tar.gz nextcloud-server-37f40cdd468a2826f6269bacc81ff74d8c606d23.zip |
Fix translated app details
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 2 |
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) { |