mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	Make sure rules are consistent and catch more errors.
This commit is contained in:
		| @@ -28,6 +28,7 @@ use FireflyIII\Helpers\Webhook\SignatureGeneratorInterface; | ||||
| use FireflyIII\Models\WebhookAttempt; | ||||
| use FireflyIII\Models\WebhookMessage; | ||||
| use GuzzleHttp\Client; | ||||
| use GuzzleHttp\Exception\ConnectException; | ||||
| use GuzzleHttp\Exception\RequestException; | ||||
| use JsonException; | ||||
| use Log; | ||||
| @@ -109,7 +110,7 @@ class StandardWebhookSender implements WebhookSenderInterface | ||||
|         $client  = new Client(); | ||||
|         try { | ||||
|             $res                 = $client->request('POST', $this->message->webhook->url, $options); | ||||
|         } catch (RequestException $e) { | ||||
|         } catch (RequestException|ConnectException $e) { | ||||
|             Log::error($e->getMessage()); | ||||
|             Log::error($e->getTraceAsString()); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user