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,