mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Add header for current Firefly III version.
This commit is contained in:
@@ -45,8 +45,13 @@ class UpdateRequest implements UpdateRequestInterface
|
|||||||
$uri = config('firefly.update_endpoint');
|
$uri = config('firefly.update_endpoint');
|
||||||
Log::debug(sprintf('Going to call %s', $uri));
|
Log::debug(sprintf('Going to call %s', $uri));
|
||||||
try {
|
try {
|
||||||
$client = new Client();
|
$client = new Client();
|
||||||
$res = $client->request('GET', $uri);
|
$options = [
|
||||||
|
'headers' => [
|
||||||
|
'User-Agent' => sprintf('FireflyIII/%s', config('firefly.version')),
|
||||||
|
],
|
||||||
|
];
|
||||||
|
$res = $client->request('GET', $uri, $options);
|
||||||
} catch (GuzzleException|Exception $e) {
|
} catch (GuzzleException|Exception $e) {
|
||||||
throw new FireflyException(sprintf('Response error from update check: %s', $e->getMessage()));
|
throw new FireflyException(sprintf('Response error from update check: %s', $e->getMessage()));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user