summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-03-20 09:59:55 -0600
committernytpu <alex@nytpu.com>2021-03-20 09:59:55 -0600
commit71f087b2ad1b63f2c3d9d2e63ad6649a2e6ccf20 (patch)
tree7dcc4263f683e32329f8d99c81aeebe5f2b1bc22 /core
parentd342b6f542ebe4f8766315f262cf764f6ac52de4 (diff)
fix breaking bug when parsing atom/rss feeds
Diffstat (limited to 'core')
-rw-r--r--core/structs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/structs.go b/core/structs.go
index 693fa0b..f4a6db8 100644
--- a/core/structs.go
+++ b/core/structs.go
@@ -80,7 +80,7 @@ func GofeedConvert(f *gofeed.Feed, title string) (*Feed, error) {
} else if v.PublishedParsed != nil {
item.Published = *v.PublishedParsed
}
- item.Link = f.FeedLink
+ item.Link = v.Link
new.Items = append(new.Items, item)
}