Actions
Patch #32886
closedRails 6: Use #media_type instead of #content_type to test the MIME type of a response
Description
Rails 6 displays deprecation warning if you use @response.content_type
to check the MIME type of the response.
DEPRECATION WARNING: Rails 6.1 will return Content-Type header without modification. If you want just the MIME type, please use `#media_type` instead.
The attached patch replaces #content_type
with #media_type
to surpress the warning.
Files
Related issues
Actions