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) ...
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) ...