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
The bug fixed in #89 was difficult to detect because await calls can fail without any error feedback. try catch blocks have been introduced. Often, a console.log is added before throwing an exception - this seems to be the only way to get feedback on await calls.
The text was updated successfully, but these errors were encountered:
The bug fixed in #89 was difficult to detect because
await
calls can fail without any error feedback.try catch
blocks have been introduced. Often, aconsole.log
is added before throwing an exception - this seems to be the only way to get feedback on await calls.The text was updated successfully, but these errors were encountered: