Hi thanks for the lib! The hint provided from captureEvent is not passed to processors. This can be solved by one line of code:
In
|
preparedEvent = await _processEvent( |
Replace
preparedEvent = await _processEvent(
preparedEvent,
eventProcessors: _options.eventProcessors,
);
with
preparedEvent = await _processEvent(
preparedEvent,
eventProcessors: _options.eventProcessors,
hint:hint, //THIS!
);