aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGit'Fellow <12234510+solracsf@users.noreply.github.com>2024-07-16 18:13:25 +0200
committerAndy Scherzinger <info@andy-scherzinger.de>2024-07-25 20:16:51 +0200
commit5a29cc51c7bb4d783355c1e46ba4dfe751825b35 (patch)
treeb1889a8b0aa284b529737705792f00ff654bb545 /lib
parent837e006e7f743567c4dc573316d210fcb35cdb5e (diff)
downloadnextcloud-server-5a29cc51c7bb4d783355c1e46ba4dfe751825b35.tar.gz
nextcloud-server-5a29cc51c7bb4d783355c1e46ba4dfe751825b35.zip
chore: add warning in case of failure
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/App/AppStore/Fetcher/AppFetcher.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/App/AppStore/Fetcher/AppFetcher.php b/lib/private/App/AppStore/Fetcher/AppFetcher.php
index bade64c969a..173c0d68437 100644
--- a/lib/private/App/AppStore/Fetcher/AppFetcher.php
+++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php
@@ -178,6 +178,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');