diff options
author | Robin Jarry <robin@jarry.cc> | 2023-03-07 00:02:47 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-03-08 00:42:58 +0100 |
commit | 66c532f859dd477ce57e222107c6b371e66064b8 (patch) | |
tree | 215d74f96cc1442cef496663dd266af5adf5926c /config | |
parent | 35040bec9962cac3c92039fac85a4068e148b0a0 (diff) | |
download | aerc-66c532f859dd477ce57e222107c6b371e66064b8.tar.gz |
templates: make SubjectBase official api
Document .SubjectBase. Fix its value along the way. Do not reuse
d.Subject() which may be empty if d.threadSameSubject is true.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/templates.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/templates.go b/config/templates.go index 96fbccb1..98be7781 100644 --- a/config/templates.go +++ b/config/templates.go @@ -76,6 +76,7 @@ func (d *dummyData) DateAutoFormat(time.Time) string { return "" } func (d *dummyData) Header(string) string { return "" } func (d *dummyData) ThreadPrefix() string { return "└─>" } func (d *dummyData) Subject() string { return "Re: [PATCH] hey" } +func (d *dummyData) SubjectBase() string { return "[PATCH] hey" } func (d *dummyData) Number() int { return 0 } func (d *dummyData) Labels() []string { return nil } func (d *dummyData) Flags() []string { return nil } |