summary refs log tree commit diff stats
path: root/commands/account
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-06-02 09:36:21 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-02 09:36:21 -0400
commit1894a7e91bd211f6a2bb7a61278b7822e71b824b (patch)
tree512be0685844122e7671f5178c3b16419d97ccf7 /commands/account
parent7f434850b51c4f47ad2d43d556baf4c91e5e85ca (diff)
downloadaerc-1894a7e91bd211f6a2bb7a61278b7822e71b824b.tar.gz
Fix infinite recursion in reply.go:findPlaintext
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/reply.go2
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
 			}
 		}
tle='author Anselm R. Garbe <garbeam@wmii.de> 2006-07-11 13:02:22 +0200 committer Anselm R. Garbe <garbeam@wmii.de> 2006-07-11 13:02:22 +0200 changed how manage client works' href='/acidbong/suckless/dwm/commit/client.c?h=4.2&id=005362043d8b0bbf856f301c231d4f10c519b8c4'>0053620 ^
439e15d ^
0053620 ^
439e15d ^










439e15d ^






3399650 ^
439e15d ^








0053620 ^



3399650 ^



0053620 ^
439e15d ^
0053620 ^



439e15d ^


0053620 ^
439e15d ^
0053620 ^










3399650 ^


0053620 ^

439e15d ^
0053620 ^

3399650 ^
439e15d ^
16c67f3 ^
0053620 ^
16c67f3 ^








3399650 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137