Closed
Description
Symfony version(s) affected
7.x
Description
on line 42 file RemoteEvent/SendgridPayloadConverter.php:
default => throw new ParseException(sprintf('Unsupported event "%s".', $payload['unsubscribe'])),
there's no array key named unsubscribed, the correct key should be event
How to reproduce
receive a webhook from sendgrid for a group_unsubscribed event
Possible Solution
replace $payload['unsubscribe'] with $payload['event'] on line 42
Additional Context
No response