cmd/hydroxide: fix skipped bytes on eml import

This commit is contained in:
Simon Ser 2020-12-17 13:55:47 +01:00
parent 4903cb08dd
commit 7b6061868f
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ func main() {
} }
} }
} else { } else {
if err := imports.ImportMessage(c, f); err != nil { if err := imports.ImportMessage(c, br); err != nil {
log.Fatal(err) log.Fatal(err)
} }
} }