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.
1 parent f4f7c75 commit 9f532b0Copy full SHA for 9f532b0
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