From 71fd27a435bad95cbcbfbee19a17d125479637b2 Mon Sep 17 00:00:00 2001 From: freek Date: Thu, 19 Mar 2020 21:53:44 +0100 Subject: [PATCH] wip --- CHANGELOG.md | 4 ++++ src/WebhookCall.php | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d088441..845063b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-webhook-server` will be documented in this file +## 1.8.1 - 2020-03-19 + +- fix `uuid` + ## 1.8.0 - 2020-03-18 - add `uuid` diff --git a/src/WebhookCall.php b/src/WebhookCall.php index 8452ed0..998a2db 100644 --- a/src/WebhookCall.php +++ b/src/WebhookCall.php @@ -65,6 +65,8 @@ public function uuid(string $uuid): self { $this->uuid = $uuid; + $this->callWebhookJob->uuid = $uuid; + return $this; }