Merge pull request #172 from cathugger/master
srnd: use text/plain as default type
This commit is contained in:
commit
7b64d2eeae
@ -642,7 +642,11 @@ func read_message_body(body io.Reader, hdr map[string][]string, store ArticleSto
|
||||
} else if err == nil {
|
||||
hdr := part.Header
|
||||
// get content type of part
|
||||
part_type := hdr.Get("Content-Type")
|
||||
part_type := strings.TrimSpace(hdr.Get("Content-Type"))
|
||||
if part_type == "" {
|
||||
// default if unspecified
|
||||
part_type = "text/plain"
|
||||
}
|
||||
// parse content type
|
||||
media_type, _, err = mime.ParseMediaType(part_type)
|
||||
if err == nil {
|
||||
|
Reference in New Issue
Block a user