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
We wrap a JSON.parse() inside of a try/catch - but also emit a user-facing event there inside of the try/catch. This can make debugging errors difficult, as it looks as though it's coming from a JSON.parse issue. We should probably move the event emitting to outside of the try/catch block, if we parsed the message successfully.
We wrap a
JSON.parse()
inside of a try/catch - but also emit a user-facing event there inside of the try/catch. This can make debugging errors difficult, as it looks as though it's coming from a JSON.parse issue. We should probably move the event emitting to outside of the try/catch block, if we parsed the message successfully.https://github.com/BeepBoopHQ/beepboop-js/blob/master/lib/resourcer.js#L114
The text was updated successfully, but these errors were encountered: