diff options
author | Ryan Ramage <ryan.ramage@gmail.com> | 2013-03-13 15:09:40 -0600 |
---|---|---|
committer | Ryan Ramage <ryan.ramage@gmail.com> | 2013-03-17 11:57:05 -0600 |
commit | c1af2072b6e12c0c25b89b3ca0ba799a95ef7370 (patch) | |
tree | 5c41e506c88ac332efa10e83488e90782d91c1ef | |
parent | 5632d725e30177d53c8f75a553aa435679993831 (diff) | |
download | couchdb-c1af2072b6e12c0c25b89b3ca0ba799a95ef7370.tar.gz |
Check that the content-type from the RequestHeaders is not undefined. Fixes COUCHDB-1697
(cherry picked from commit bc3ef5b8cfd58b9d07868c1267c4099f994e53d8)
-rw-r--r-- | src/couchdb/couch_httpd_cors.erl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/couchdb/couch_httpd_cors.erl b/src/couchdb/couch_httpd_cors.erl index 1ce890e93..ce41557ad 100644 --- a/src/couchdb/couch_httpd_cors.erl +++ b/src/couchdb/couch_httpd_cors.erl @@ -216,10 +216,14 @@ maybe_apply_cors_headers(CorsHeaders, RequestHeaders0) -> % now we need to check whether the Content-Type valus is % in ?SIMPLE_CONTENT_TYPE_VALUES and if it isn’t add Content- % Type to to ExposedHeaders - ContentType = string:to_lower( - proplists:get_value("Content-Type", RequestHeaders0)), - - IncludeContentType = lists:member(ContentType, ?SIMPLE_CONTENT_TYPE_VALUES), + ContentType = proplists:get_value("Content-Type", RequestHeaders0), + IncludeContentType = case ContentType of + undefined -> + false; + _ -> + ContentType_ = string:to_lower(ContentType), + lists:member(ContentType_, ?SIMPLE_CONTENT_TYPE_VALUES) + end, ExposedHeaders = case IncludeContentType of false -> lists:umerge(ExposedHeaders0, ["Content-Type"]); |