Merged in feature_upgrade_and_rss (pull request #38)

Adding missing pubDate.
This commit is contained in:
Alexey Eschenko 2020-04-04 00:37:55 +00:00
commit 99f5ae0fcc
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,7 @@ class RssGenerator
}
// TODO feed pagination
// @see https://tools.ietf.org/html/rfc5005#section-3
return $feed;
}
@ -101,6 +102,7 @@ class RssGenerator
$item
->title($torrent->getName())
->description($torrent->getInfoHash())
->pubDate($torrent->getDiscoveredOn())
->url($this->generateUrl('torrents_show', ['id' => $torrent->getId()]))
->enclosure(
$this->magnetGenerator->generate($torrent->getInfoHash(), $torrent->getName()),