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
{{ message }}
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
Just a guess: Your code won't parse chrome's csp reports, while FF works.
Because chrome uses application/csp-report as mime type, not application/json - and then Play refuses to parse the body as json. Simple solution (after 2h debugging) - use @BodyParser.Of(BodyParser.TolerantJson.class) ...
The text was updated successfully, but these errors were encountered:
Just a guess: Your code won't parse chrome's csp reports, while FF works.
Because chrome uses application/csp-report as mime type, not application/json - and then Play refuses to parse the body as json. Simple solution (after 2h debugging) - use @BodyParser.Of(BodyParser.TolerantJson.class) ...
The text was updated successfully, but these errors were encountered: