diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-11-13 23:08:19 -0500 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-11-13 23:09:08 -0500 |
commit | 5f3222155957e887516ffd4be58c4743553415b5 (patch) | |
tree | 591328d042686230b1ffcb502aaa79a8df44d79b /actionpack/lib | |
parent | f1c5b0bd0a6211286bfbb8f46991de325d45a2e5 (diff) | |
parent | 773f71c8a0d61a01b8afcc7359e0364a1f2a1bce (diff) | |
download | rails-5f3222155957e887516ffd4be58c4743553415b5.tar.gz rails-5f3222155957e887516ffd4be58c4743553415b5.tar.bz2 rails-5f3222155957e887516ffd4be58c4743553415b5.zip |
Merge pull request #27007 from maclover7/jm-fix-26912
Don't error on an empty CONTENT_TYPE
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/http/mime_negotiation.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/http/mime_negotiation.rb b/actionpack/lib/action_dispatch/http/mime_negotiation.rb index d0c9413efa..e5f20003a3 100644 --- a/actionpack/lib/action_dispatch/http/mime_negotiation.rb +++ b/actionpack/lib/action_dispatch/http/mime_negotiation.rb @@ -29,8 +29,8 @@ module ActionDispatch content_mime_type && content_mime_type.to_s end - def has_content_type? - has_header? "CONTENT_TYPE" + def has_content_type? # :nodoc: + get_header "CONTENT_TYPE" end # Returns the accepted MIME type for the request. |