Keep the data of the local app (especially the version)

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/10508/head
Joas Schilling 8 years ago
parent 9891eae232
commit 2dcae4e8ea
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
  1. 2
      settings/Controller/AppSettingsController.php

@ -214,7 +214,7 @@ class AppSettingsController extends Controller {
if (!array_key_exists($app['id'], $this->allApps)) {
$this->allApps[$app['id']] = $app;
} else {
$this->allApps[$app['id']] = array_merge($this->allApps[$app['id']], $app);
$this->allApps[$app['id']] = array_merge($app, $this->allApps[$app['id']]);
}
}

Loading…
Cancel
Save