aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/parse.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-02 18:51:37 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-02 18:51:37 +0200
commit477241a2c2356c61b7317246040aee50d2a7a81d (patch)
tree56a040ab9c938d71455366ade90d1c5443440d32 /internal/feed/parse.go
parentc05a640571b57bd63e67867f9d8122c4e2d1d183 (diff)
downloadfeed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.tar.gz
feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.tar.bz2
feed2imap-go-477241a2c2356c61b7317246040aee50d2a7a81d.zip
WIP: Message-Ids
Diffstat (limited to 'internal/feed/parse.go')
-rw-r--r--internal/feed/parse.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/feed/parse.go b/internal/feed/parse.go
index 1ce6cda..435c0ed 100644
--- a/internal/feed/parse.go
+++ b/internal/feed/parse.go
@@ -7,6 +7,7 @@ import (
"net/http"
"time"
+ "github.com/lithammer/shortuuid"
"github.com/mmcdole/gofeed"
"github.com/Necoro/feed2imap-go/pkg/log"
@@ -55,7 +56,7 @@ func parseFeed(feed *Feed) error {
feed.feed = parsedFeed
feed.items = make([]feeditem, len(parsedFeed.Items))
for idx, item := range parsedFeed.Items {
- feed.items[idx] = feeditem{Feed: parsedFeed, Item: item}
+ feed.items[idx] = feeditem{Feed: parsedFeed, Item: item, itemId: shortuuid.New()}
}
return nil
}