Merge pull request #16818 from nextcloud/backport/16811/stable16
[stable16] Correctly remove apps without any releases
This commit is contained in:
commit
860e35501e
|
@ -115,6 +115,7 @@ class AppFetcher extends Fetcher {
|
|||
|
||||
if (empty($releases)) {
|
||||
// Remove apps that don't have a matching release
|
||||
$response['data'][$dataKey] = [];
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -136,7 +137,7 @@ class AppFetcher extends Fetcher {
|
|||
}
|
||||
}
|
||||
|
||||
$response['data'] = array_values($response['data']);
|
||||
$response['data'] = array_values(array_filter($response['data']));
|
||||
return $response;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue