From 8665a9ba1656fe362025f4a6001e227b6a91d503 Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Tue, 16 Jul 2024 18:13:25 +0200 Subject: [PATCH] chore: add warning in case of failure Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- lib/private/App/AppStore/Fetcher/AppFetcher.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/App/AppStore/Fetcher/AppFetcher.php b/lib/private/App/AppStore/Fetcher/AppFetcher.php index 8c678888f86..ae36d849c5e 100644 --- a/lib/private/App/AppStore/Fetcher/AppFetcher.php +++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php @@ -154,6 +154,7 @@ class AppFetcher extends Fetcher { $apps = parent::get($allowPreReleases); if (empty($apps)) { + $this->logger->warning('Could not get apps from the appstore', ['app' => 'appstoreFetcher']); return []; } $allowList = $this->config->getSystemValue('appsallowlist'); -- 2.39.5