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 7efd244 + 3ca7480 commit e11a8f0Copy full SHA for e11a8f0
lib/private/App/AppStore/Fetcher/Fetcher.php
@@ -86,7 +86,8 @@ protected function fetch($ETag, $content) {
86
$response = $client->get($this->getEndpoint(), $options);
87
} catch (ConnectException $e) {
88
$this->config->setAppValue('settings', 'appstore-fetcher-lastFailure', (string)time());
89
- throw $e;
+ $this->logger->error('Failed to connect to the app store', ['exception' => $e]);
90
+ return [];
91
}
92
93
$responseJson = [];
0 commit comments