aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/email/lore/parse.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/email/lore/parse.go')
-rw-r--r--pkg/email/lore/parse.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/email/lore/parse.go b/pkg/email/lore/parse.go
index 98152b408..9d1a010f5 100644
--- a/pkg/email/lore/parse.go
+++ b/pkg/email/lore/parse.go
@@ -29,6 +29,7 @@ type Series struct {
MessageID string
Version int
Corrupted string // If non-empty, contains a reason why the series better be ignored.
+ Tags []string
Patches []Patch
}
@@ -74,6 +75,7 @@ func PatchSeries(emails []*email.Email) []*Series {
Subject: patch.Title,
MessageID: thread.MessageID,
Version: patch.Version.ValueOr(1),
+ Tags: patch.Tags,
}
ret = append(ret, series)
if patch.Seq.IsSet() && patch.Seq.Value() > 1 {