Hi thanks for the lib! The hint provided from captureEvent is not passed to processors. This can be solved by one line of code:
Replace
preparedEvent = await _processEvent(
preparedEvent,
eventProcessors: _options.eventProcessors,
);
with
preparedEvent = await _processEvent(
preparedEvent,
eventProcessors: _options.eventProcessors,
hint:hint, //THIS!
);
@fzyzcjy thanks, good catch btw :)
@marandaneto You are welcome! This one also released on Monday right? :)
@marandaneto You are welcome! This one also released on Monday right? :)
yes