From 72ee41341110daa5d0c116f8c8c5986641d04486 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 2 Jan 2023 23:23:56 -0600 Subject: [PATCH] Fixed: (BeyondHD) Assume Universal Time for publish dates --- src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs b/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs index 05acf60c9..d700996d4 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs @@ -223,7 +223,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) InfoUrl = details, Guid = details, Categories = _categories.MapTrackerCatDescToNewznab(row.Category), - PublishDate = DateTime.Parse(row.CreatedAt, CultureInfo.InvariantCulture), + PublishDate = DateTime.Parse(row.CreatedAt, CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal), Size = row.Size, Grabs = row.Grabs, Seeders = row.Seeders,