aboutsummaryrefslogtreecommitdiff
path: root/imap.go
diff options
context:
space:
mode:
Diffstat (limited to 'imap.go')
-rw-r--r--imap.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap.go b/imap.go
index 18220b5..78e2f88 100644
--- a/imap.go
+++ b/imap.go
@@ -138,7 +138,7 @@ func (msg *imapMessage) TextPartName() string {
}
type IMAPPartNode struct {
- Path []int
+ Path []int
MIMEType string
Children []IMAPPartNode
}
@@ -158,7 +158,7 @@ func imapPartTree(bs *imap.BodyStructure, path []int) *IMAPPartNode {
}
node := &IMAPPartNode{
- Path: path,
+ Path: path,
MIMEType: strings.ToLower(bs.MIMEType + "/" + bs.MIMESubType),
Children: make([]IMAPPartNode, len(bs.Parts)),
}