You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a subscriber callback throws an Error the rest of the subscribers are not called. I think postal should guard the execution of the callbacks and if one throws it does not affect calling the other callbacks
in the example above the cb function is never called. One way to solve this would be to call the callbacks in a setTimeout(cb, 0); or in a try {} catch () {} block
The text was updated successfully, but these errors were encountered:
If a subscriber callback throws an Error the rest of the subscribers are not called. I think postal should guard the execution of the callbacks and if one throws it does not affect calling the other callbacks
in the example above the
cb
function is never called. One way to solve this would be to call the callbacks in asetTimeout(cb, 0);
or in atry {} catch () {}
blockThe text was updated successfully, but these errors were encountered: