diff --git a/src/Appwrite/Platform/Workers/Webhooks.php b/src/Appwrite/Platform/Workers/Webhooks.php index c903dafdae..0f86861f1e 100644 --- a/src/Appwrite/Platform/Workers/Webhooks.php +++ b/src/Appwrite/Platform/Workers/Webhooks.php @@ -54,6 +54,12 @@ class Webhooks extends Action $this->errors = []; $payload = $message->getPayload() ?? []; + var_dump([ + 'id' => $project->getId(), + 'region' => $project->getAttribute('region'), + + ]); + if (empty($payload)) { throw new Exception('Missing payload'); }