diff --git a/src/Appwrite/Platform/Modules/Presences/HTTP/Delete.php b/src/Appwrite/Platform/Modules/Presences/HTTP/Delete.php index 7853abe905..e3baaf9c3d 100644 --- a/src/Appwrite/Platform/Modules/Presences/HTTP/Delete.php +++ b/src/Appwrite/Platform/Modules/Presences/HTTP/Delete.php @@ -65,7 +65,10 @@ class Delete extends Base } $dbForProject->deleteDocument('presenceLogs', $presenceId); - $queueForEvents->setParam('presenceId', $presence->getId()); + + $queueForEvents + ->setParam('presenceId', $presence->getId()) + ->setPayload($response->output($presence, Response::MODEL_PRESENCE)); $response->noContent(); }