diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-21 01:26:48 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-21 01:26:48 +0200 |
commit | 87935efe945c6847d2b18afaf7bfae5e80aa61e6 (patch) | |
tree | 748e678472b937d19c4985b059d8db590890fed0 /internal/feed/parse.go | |
parent | afe2c4919dc2ded2f3b7d796b914dd66fbe78e64 (diff) | |
download | feed2imap-go-87935efe945c6847d2b18afaf7bfae5e80aa61e6.tar.gz feed2imap-go-87935efe945c6847d2b18afaf7bfae5e80aa61e6.tar.bz2 feed2imap-go-87935efe945c6847d2b18afaf7bfae5e80aa61e6.zip |
HTML Template part of the mail
Diffstat (limited to 'internal/feed/parse.go')
-rw-r--r-- | internal/feed/parse.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/feed/parse.go b/internal/feed/parse.go index 00b6aff..22d16f2 100644 --- a/internal/feed/parse.go +++ b/internal/feed/parse.go @@ -26,8 +26,8 @@ func parseFeed(feed *Feed) error { feed.feed = parsedFeed feed.items = make([]feeditem, len(parsedFeed.Items)) - for _, item := range parsedFeed.Items { - feed.items = append(feed.items, feeditem{parsedFeed, item}) + for idx, item := range parsedFeed.Items { + feed.items[idx] = feeditem{parsedFeed, item} } return nil } |