From 2bae37d0c54dc2b5b3c4226d245f403ad39b7533 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 31 Dec 2021 10:19:05 -0600 Subject: [PATCH] Fixed: (TorrentLeech) Calculating Incorrect Age Closes #720 --- src/NzbDrone.Core/Indexers/Definitions/TorrentLeech.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/TorrentLeech.cs b/src/NzbDrone.Core/Indexers/Definitions/TorrentLeech.cs index 3e4867382..3152fc1eb 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/TorrentLeech.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/TorrentLeech.cs @@ -281,7 +281,7 @@ namespace NzbDrone.Core.Indexers.Definitions var torrentId = row.fid.ToString(); var details = new Uri(_settings.BaseUrl + "torrent/" + torrentId); var link = new Uri(_settings.BaseUrl + "download/" + torrentId + "/" + row.filename); - var publishDate = DateTime.ParseExact(row.addedTimestamp.ToString(), "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture); + var publishDate = DateTime.ParseExact(row.addedTimestamp.ToString(), "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal); var seeders = (int)row.seeders; var leechers = (int)row.leechers; var grabs = (int)row.completed;