diff options
author | Robert Newson <rnewson@apache.org> | 2011-01-20 12:59:48 +0000 |
---|---|---|
committer | Robert Newson <rnewson@apache.org> | 2011-01-20 12:59:48 +0000 |
commit | f57948efb95ad460a2bfce3923696e2580561e6b (patch) | |
tree | 0d70cb229615f8eecf7ee6f0e5d563b93cf42bb5 /src/couchdb | |
parent | 843ed3da02a829a0e64121c9f7f2b8dbe15d920c (diff) |
COUCHDB-1034 - ignore runs of whitespace between content types in compressible_types list
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1061282 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r-- | src/couchdb/couch_util.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_util.erl b/src/couchdb/couch_util.erl index 3c18bacd..0480f230 100644 --- a/src/couchdb/couch_util.erl +++ b/src/couchdb/couch_util.erl @@ -393,7 +393,7 @@ compressible_att_type(MimeType) when is_binary(MimeType) -> compressible_att_type(MimeType) -> TypeExpList = re:split( couch_config:get("attachments", "compressible_types", ""), - ", ?", + "\\s*,\\s*", [{return, list}] ), lists:any( |