Browse Source

Merge pull request #16811 from nextcloud/bugfix/16771/correctly-remove-apps-without-any-releases

Correctly remove apps without any releases
tags/v17.0.0beta2
Roeland Jago Douma 4 years ago
parent
commit
dd02920aed
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      lib/private/App/AppStore/Fetcher/AppFetcher.php

+ 2
- 1
lib/private/App/AppStore/Fetcher/AppFetcher.php View File



if (empty($releases)) { if (empty($releases)) {
// Remove apps that don't have a matching release // Remove apps that don't have a matching release
$response['data'][$dataKey] = [];
continue; continue;
} }


} }
} }


$response['data'] = array_values($response['data']);
$response['data'] = array_values(array_filter($response['data']));
return $response; return $response;
} }



Loading…
Cancel
Save