Open mjarvis opened 7 years ago
self.event.error was being dispatched on the websocket's queue, when it should be dispatched on the queue specified by the library user. Wrapping this in a fire { } call like other events resolves the issue by correctly using the specified queue.
self.event.error
fire { }
i merged this and so far no issues
self.event.error
was being dispatched on the websocket's queue, when it should be dispatched on the queue specified by the library user. Wrapping this in afire { }
call like other events resolves the issue by correctly using the specified queue.