From eff7e5f18f78a52afd9107c15252876e0291b783 Mon Sep 17 00:00:00 2001 From: Adam Kocoloski Date: Wed, 29 Apr 2009 14:07:09 +0000 Subject: Closes COUCHDB-320 (ignore Content-Type in _temp_view). Thanks B. Candler git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@769792 13f79535-47bb-0310-9956-ffa450edef68 --- src/couchdb/couch_httpd_view.erl | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/couchdb/couch_httpd_view.erl') diff --git a/src/couchdb/couch_httpd_view.erl b/src/couchdb/couch_httpd_view.erl index 7907f68f..9b1f3617 100644 --- a/src/couchdb/couch_httpd_view.erl +++ b/src/couchdb/couch_httpd_view.erl @@ -78,11 +78,6 @@ handle_view_req(Req, _Db) -> handle_temp_view_req(#httpd{method='POST'}=Req, Db) -> couch_stats_collector:increment({httpd, temporary_view_reads}), - case couch_httpd:primary_header_value(Req, "content-type") of - undefined -> ok; - "application/json" -> ok; - Else -> throw({incorrect_mime_type, Else}) - end, {Props} = couch_httpd:json_body(Req), Language = proplists:get_value(<<"language">>, Props, <<"javascript">>), {DesignOptions} = proplists:get_value(<<"options">>, Props, {[]}), -- cgit v1.2.3