diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 23:56:21 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 23:56:21 +0200 |
commit | 8c265d2a218493669fd74ecc7510de6a0f4545fc (patch) | |
tree | 4a28966ca9a1e6b3bb2a68918ba4fa12102547aa | |
parent | 7f4f70ff21acb35b9d2967bc781dbeecda7e417f (diff) | |
download | feed2imap-go-8c265d2a218493669fd74ecc7510de6a0f4545fc.tar.gz feed2imap-go-8c265d2a218493669fd74ecc7510de6a0f4545fc.tar.bz2 feed2imap-go-8c265d2a218493669fd74ecc7510de6a0f4545fc.zip |
Fix template generation
-rw-r--r-- | internal/feed/feed.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/feed/feed.go b/internal/feed/feed.go index 0038335..7b9f0de 100644 --- a/internal/feed/feed.go +++ b/internal/feed/feed.go @@ -29,7 +29,9 @@ type feeditem struct { reasons []string } -func (item *feeditem) Creator() string { +// Creator returns the name of the creating author. +// MUST NOT have `*feeditem` has the receiver, because the template breaks then. +func (item feeditem) Creator() string { if item.Item.Author != nil { return item.Item.Author.Name } |