Merge pull request #10506 from nextcloud/fix/10504/not_all_apps_are_appstore
Not all apps are from the appstore
This commit is contained in:
commit
9057621d64
|
@ -251,9 +251,11 @@ class AppSettingsController extends Controller {
|
|||
|
||||
// Extend existing app details
|
||||
$apps = array_map(function($appData) use ($dependencyAnalyzer) {
|
||||
if (isset($appData['appstoreData'])) {
|
||||
$appstoreData = $appData['appstoreData'];
|
||||
$appData['screenshot'] = isset($appstoreData['screenshots'][0]['url']) ? 'https://usercontent.apps.nextcloud.com/' . base64_encode($appstoreData['screenshots'][0]['url']) : '';
|
||||
$appData['category'] = $appstoreData['categories'];
|
||||
}
|
||||
|
||||
$newVersion = $this->installer->isUpdateAvailable($appData['id']);
|
||||
if($newVersion) {
|
||||
|
|
Loading…
Reference in New Issue