diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-06-02 09:36:21 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-02 09:36:21 -0400 |
commit | 1894a7e91bd211f6a2bb7a61278b7822e71b824b (patch) | |
tree | 512be0685844122e7671f5178c3b16419d97ccf7 /commands/account/reply.go | |
parent | 7f434850b51c4f47ad2d43d556baf4c91e5e85ca (diff) | |
download | aerc-1894a7e91bd211f6a2bb7a61278b7822e71b824b.tar.gz |
Fix infinite recursion in reply.go:findPlaintext
Diffstat (limited to 'commands/account/reply.go')
-rw-r--r-- | commands/account/reply.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/reply.go b/commands/account/reply.go index b0bd346..ecc6239 100644 --- a/commands/account/reply.go +++ b/commands/account/reply.go @@ -243,7 +243,7 @@ func findPlaintext(bs *imap.BodyStructure, return part, cur } if part.MIMEType == "multipart" { - if part, path := findPlaintext(bs, cur); path != nil { + if part, path := findPlaintext(part, cur); path != nil { return part, path } } |