Permalink
Browse files
fix($http): only parse as JSON when opening/closing brackets match
Previously, due to weak JSON-detecting RegExp, string like `[...}` and
`{...]` would be considered JSON (even if they obviously aren't) and an
expection would be thrown while trying to parse them.
This commit makes sure the opening and closing brackets match. This
doesn't completely eliminate false positives (e.g. `[]{}[]`), but does
help reduce them.
Closes #10349
Closes #10357- Loading branch information
Showing
with
53 additions
and 8 deletions.
- +19 −8 src/ng/http.js
- +34 −0 test/ng/httpSpec.js