fix(rss): improve dispatching of tmdb items to appropriate pvr's (#33)

This commit is contained in:
l3uddz
2021-11-21 13:24:13 +00:00
committed by GitHub
parent 685a9a075d
commit a4d8a0e4cc
5 changed files with 80 additions and 33 deletions

View File

@@ -58,10 +58,11 @@ type Rss struct {
}
type FeedItem struct {
Title string `xml:"title,omitempty"`
Category string `xml:"category,omitempty"`
GUID string `xml:"guid,omitempty"`
PubDate Time `xml:"pubDate,omitempty"`
Title string `xml:"title,omitempty"`
Category string `xml:"category,omitempty"`
Categories []string
GUID string `xml:"guid,omitempty"`
PubDate Time `xml:"pubDate,omitempty"`
// set by processor
Feed string