Only add a Content-Type when it's not nil

Makes it possible to create MIME parts for non-file POST parameters when
sending a file.
unstable
James Lee 2012-03-01 16:28:55 -07:00
parent 687c50d0cd
commit 4f2fd918e4
1 changed files with 3 additions and 1 deletions

View File

@ -88,7 +88,9 @@ class Message
part.header.set("Content-Disposition", content_disposition)
end
part.header.set("Content-Type", content_type)
if (content_type)
part.header.set("Content-Type", content_type)
end
if (transfer_encoding)
part.header.set("Content-Transfer-Encoding", transfer_encoding)