diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-07 00:57:00 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-07 00:57:00 +0200 |
commit | 81714829dea0a8dddfdcd7a4a13df292fea255fc (patch) | |
tree | c4991d3bf261fe1242e97df0d9e197d3cfd9741a /internal | |
parent | 345887f3c8319c6dd91f20cd75615fd5c9fcf460 (diff) | |
download | feed2imap-go-81714829dea0a8dddfdcd7a4a13df292fea255fc.tar.gz feed2imap-go-81714829dea0a8dddfdcd7a4a13df292fea255fc.tar.bz2 feed2imap-go-81714829dea0a8dddfdcd7a4a13df292fea255fc.zip |
Fix
Diffstat (limited to '')
-rw-r--r-- | internal/feed/item.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/item.go b/internal/feed/item.go index 8b747fb..52915bf 100644 --- a/internal/feed/item.go +++ b/internal/feed/item.go @@ -51,7 +51,7 @@ func (item *item) Creator() string { } func (item *item) FeedLink() string { - if item.Feed.Link != "" { + if item.Feed.FeedLink != "" { // the one in the feed itself return item.Feed.FeedLink } |