NyaaPantsu / nyaa

Nyaa.se replacement written in golang
MIT License
994 stars 148 forks source link

RSS feed description tag should include link to torrent page #1766

Open Albirew opened 5 years ago

Albirew commented 5 years ago

User should be able to simply get to torrent page from it's RSS feed.

I don't know much about go but it should looks like something like this: controllers/feed/rss.go line 39

    Description: string(torrentJSON.Description) + "<br><br>---<br><a href=\"" + config.WebAddress() + "/view/" + strconv.FormatUint(uint64(torrentJSON.ID), 10) + "\">" + torrentJSON.Name + "</a>",