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
Uncaught SyntaxError: Unexpected token / in JSON at position 87
at JSON.parse (<anonymous>)
at <anonymous>:1:13
The problem is at "urlized_text":"<a href="/h/matrix">#matrix</a>"
The " before /h/matrix cancels the " after href= causing an error. The best fix is to simply change the " in '
The text was updated successfully, but these errors were encountered:
For example, if I want to parse the responeText of /api/comments/?reply_to=9006, it will fail:
The problem is at
"urlized_text":"<a href="/h/matrix">#matrix</a>"
The " before
/h/matrix
cancels the " afterhref=
causing an error. The best fix is to simply change the"
in'
The text was updated successfully, but these errors were encountered: