mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
Merge pull request #4837 from appwrite/fix-event-executions
Fix event-triggered executions syntax error
This commit is contained in:
commit
ec2da723fb
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ $server->job()
|
|||
queueForFunctions: $queueForFunctions,
|
||||
trigger: 'event',
|
||||
event: $events[0],
|
||||
eventData: $eventData,
|
||||
eventData: \is_string($eventData) ? $eventData : \json_encode($eventData),
|
||||
user: $user,
|
||||
data: null,
|
||||
executionId: null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue