Fixed: HDBits release age incorrect.

fixes #1272
This commit is contained in:
Taloth Saldono
2016-05-10 22:19:51 +02:00
parent 0f1afd416b
commit d3adb7ac40
3 changed files with 3 additions and 3 deletions
@@ -54,7 +54,7 @@ namespace NzbDrone.Core.Indexers.Rarbg
torrentInfo.Size = torrent.size;
torrentInfo.DownloadUrl = torrent.download;
torrentInfo.InfoUrl = torrent.info_page;
torrentInfo.PublishDate = torrent.pubdate;
torrentInfo.PublishDate = torrent.pubdate.ToUniversalTime();
torrentInfo.Seeders = torrent.seeders;
torrentInfo.Peers = torrent.leechers + torrent.seeders;