Skip to content

Commit

Permalink
Revert "Partly revert unnecessary change in #36996"
Browse files Browse the repository at this point in the history
This reverts commit 3573746.
  • Loading branch information
kamipo committed Aug 22, 2019
1 parent 3ae59fe commit 85c0f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_dispatch/http/response.rb
Expand Up @@ -426,7 +426,7 @@ def parse_content_type(content_type)
if content_type && match = CONTENT_TYPE_PARSER.match(content_type)
ContentTypeHeader.new(match[:type], match[:extra], match[:charset])
else
NullContentTypeHeader
ContentTypeHeader.new(content_type, nil)
end
end

Expand Down

0 comments on commit 85c0f96

Please sign in to comment.