Rack::ContentNegotiation#find_writer_for_content_type returns nil for Accept headers with subtype wildcards, such as text/* and application/*. This leads the server to respond with a 406 Not Acceptable although it is capable of serving proper content types. I think it would make sense to match them with text/turtle and application/ld+json respectively, as they are the standard content types in LDP.
Rack::ContentNegotiation#find_writer_for_content_type
returnsnil
for Accept headers with subtype wildcards, such astext/*
andapplication/*
. This leads the server to respond with a406 Not Acceptable
although it is capable of serving proper content types. I think it would make sense to match them withtext/turtle
andapplication/ld+json
respectively, as they are the standard content types in LDP.