Fix rss magnet link
Cette révision appartient à :
Parent
5feec8748b
révision
d16871d91a
2 fichiers modifiés avec 8 ajouts et 9 suppressions
|
@ -87,7 +87,7 @@ func RSSMagnetHandler(c *gin.Context) {
|
|||
torrentJSON := torrent.ToJSON()
|
||||
feed.Items[i] = &nyaafeeds.RssItem{
|
||||
Title: torrentJSON.Name,
|
||||
MagnetLink: &nyaafeeds.RssMagnetLink{Text: string(torrentJSON.Magnet)},
|
||||
Link: &nyaafeeds.RssMagnetLink{Text: string(torrentJSON.Magnet)},
|
||||
Description: string(torrentJSON.Description),
|
||||
PubDate: torrent.Date.Format(time.RFC822),
|
||||
GUID: config.WebAddress() + "/view/" + strconv.FormatUint(uint64(torrentJSON.ID), 10),
|
||||
|
|
|
@ -73,8 +73,7 @@ type RssFeed struct {
|
|||
type RssItem struct {
|
||||
XMLName xml.Name `xml:"item"`
|
||||
Title string `xml:"title"` // required
|
||||
Link string `xml:"link,omitempty"`
|
||||
MagnetLink *RssMagnetLink `xml:"link,omitempty"`
|
||||
Link interface{} `xml:"link,omitempty"`
|
||||
Description string `xml:"description"` // required
|
||||
Author string `xml:"author,omitempty"`
|
||||
Category *RssCategory `xml:"category,omitempty"`
|
||||
|
|
Référencer dans un nouveau ticket