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 71f4e01 + e4a67f2 commit 3aef5acCopy full SHA for 3aef5ac
lib/private/App/AppStore/Fetcher/AppFetcher.php
@@ -185,6 +185,10 @@ public function get($allowUnstable = false) {
185
$allowPreReleases = $allowUnstable || $this->getChannel() === 'beta' || $this->getChannel() === 'daily' || $this->getChannel() === 'git';
186
187
$apps = parent::get($allowPreReleases);
188
+ if (empty($apps)) {
189
+ $this->logger->warning('Could not get apps from the appstore', ['app' => 'appstoreFetcher']);
190
+ return [];
191
+ }
192
$allowList = $this->config->getSystemValue('appsallowlist');
193
194
// If the admin specified a allow list, filter apps from the appstore
0 commit comments