diff --git a/src/Debouncers/JobDebouncer.php b/src/Debouncers/JobDebouncer.php index cf77139..ab0264b 100644 --- a/src/Debouncers/JobDebouncer.php +++ b/src/Debouncers/JobDebouncer.php @@ -23,7 +23,10 @@ public function __construct( public function execute(): void { if ($this->isDebounceable($this->queuable)) { - $this->queuable->setReport($this->getReport()); + $report = $this->getReport(); + if ($report !== null) { + $this->queuable->setReport($report); + } } if ($this->sync) {