From c68e8c04d8162bec98dadd533b6421c29805ce7d Mon Sep 17 00:00:00 2001 From: Barry Brands Date: Tue, 8 Oct 2024 15:37:15 +0200 Subject: [PATCH] Small fix --- src/Service/ZaakService.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Service/ZaakService.php b/src/Service/ZaakService.php index 2b82c8f..9972660 100644 --- a/src/Service/ZaakService.php +++ b/src/Service/ZaakService.php @@ -508,9 +508,7 @@ public function zaakHandler(?array $data = [], ?array $configuration = []) if (isset($data['caseId']) === true) { $zaak = $this->getZaak($configuration, $data['caseId']); - } - - if (isset($data['body']['case_uuid']) === true) { + } else if (isset($data['body']['case_uuid']) === true) { $zaak = $this->getZaak($configuration, $data['body']['case_uuid']); }