mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
Fix AppSettingsController.php overwriting currentLanguage
Fix for CurrentLanguage being overwritten by currentVersion thus breaking App-View Signed-off-by: 1 Man Projects <reed@1manprojects.de>
This commit is contained in:
parent
b10f72fccc
commit
7c40700491
1 changed files with 1 additions and 1 deletions
|
|
@ -368,7 +368,7 @@ class AppSettingsController extends Controller {
|
|||
if ($this->appManager->isInstalled($app['id'])) {
|
||||
$currentVersion = $this->appManager->getAppVersion($app['id']);
|
||||
} else {
|
||||
$currentLanguage = $app['releases'][0]['version'];
|
||||
$currentVersion = $app['releases'][0]['version'];
|
||||
}
|
||||
|
||||
$formattedApps[] = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue