Patch #32886
Rails 6: Use #media_type instead of #content_type to test the MIME type of a response
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Rails support | |||
Target version: | 4.2.0 |
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.
Related issues
Associated revisions
Use #media_type instead of #content_type to test the MIME type of a response (#32886).
Patch by Go MAEDA.
History
#1
Updated by Go MAEDA 12 months ago
- Related to Feature #29914: Migrate to Rails 6 added
#3
Updated by Go MAEDA 12 months 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.