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
When the underlying web framework returns a single value for the Accept header that contains a comma-separated list of values, the single-item list is made available to ProducibleOperationArgumentResolver. It does not handle it correctly as it treats the entire string as a single value rather than multiple comma-separated values.
The text was updated successfully, but these errors were encountered:
Nope. MimeTypeUtils.tokenize(accept) takes care of this and the behaviour's covered by ProducibleOperationArgumentResolverTests.whenMultipleValuesAreAcceptableAsSingleHeaderThenHighestOrdinalIsReturned()
When the underlying web framework returns a single value for the
Accept
header that contains a comma-separated list of values, the single-item list is made available toProducibleOperationArgumentResolver
. It does not handle it correctly as it treats the entire string as a single value rather than multiple comma-separated values.The text was updated successfully, but these errors were encountered: