We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09287c0 + 98ab16e commit 2104207Copy full SHA for 2104207
1 file changed
apps/appstore/lib/Controller/ApiController.php
@@ -330,7 +330,14 @@ private function fetchApps(): void {
330
331
$apps = $this->getAppsForCategory('');
332
$supportedApps = $this->subscriptionRegistry->delegateGetSupportedApps();
333
+ $shippedApps = $this->appManager->getAlwaysEnabledApps();
334
foreach ($apps as $app) {
335
+ if (in_array($app['id'], $shippedApps)) {
336
+ // shipped apps are no longer published on the appstore
337
+ // so skip them to avoid confusion with outdated data
338
+ continue;
339
+ }
340
+
341
$app['appstore'] = true;
342
if (!array_key_exists($app['id'], $this->allApps)) {
343
$this->allApps[$app['id']] = $app;
0 commit comments