fix content_type handling for attachments

This commit is contained in:
Chris Anderson 2009-08-06 13:04:17 -07:00
parent 441fe94a39
commit 212bc79f3e
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ module CouchRest
def set_attachment_attr(args)
content_type = args[:content_type] ? args[:content_type] : get_mime_type(args[:file])
self['_attachments'][args[:name]] = {
'content-type' => content_type,
'content_type' => content_type,
'data' => encode_attachment(args[:file].read)
}
end