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
JSON.parse will throw an exception if it's given a string that isn't valid JSON. This will be rare when dealing with an API like Github's, but it's best to be sure, especially if that error will prevent you from responding to the client, or take down your server entirely:
JSON.parse
will throw an exception if it's given a string that isn't valid JSON. This will be rare when dealing with an API like Github's, but it's best to be sure, especially if that error will prevent you from responding to the client, or take down your server entirely:jeth/src/handlers.js
Line 47 in 55aa475
Or prevent your client-side code from updating the UI to let your user know what's happened:
jeth/public/dom.js
Line 7 in 55aa475
You'll need to use
try
/catch
.The text was updated successfully, but these errors were encountered: