mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -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
b0976e4568
commit
6ef5958007
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