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
Updated by Go MAEDA almost 5 years ago
- Related to Feature #29914: Migrate to Rails 6.1 with Zeitwerk autoloading added
Updated by Go MAEDA almost 5 years ago
- Subject changed from Rails 6: Use #media_type instead of #content_type to test the MIME type of the response to Rails 6: Use #media_type instead of #content_type to test the MIME type of a response
- Status changed from New to Closed
- Assignee set to Go MAEDA
Committed the patch.
Actions