From 5cbacc01eb83531eaf0aa19b0a665b1b6d73eb0c Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 25 Mar 2025 12:50:17 +0200 Subject: [PATCH] Fixed: Publish dates timezone in history details for grabbed releases --- src/NzbDrone.Core/History/HistoryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/History/HistoryService.cs b/src/NzbDrone.Core/History/HistoryService.cs index 144258272..e78e5d229 100644 --- a/src/NzbDrone.Core/History/HistoryService.cs +++ b/src/NzbDrone.Core/History/HistoryService.cs @@ -224,7 +224,7 @@ namespace NzbDrone.Core.History if (message.Release.PublishDate != DateTime.MinValue) { - history.Data.Add("PublishedDate", message.Release.PublishDate.ToString("s") + "Z"); + history.Data.Add("PublishedDate", message.Release.PublishDate.ToUniversalTime().ToString("s") + "Z"); } _historyRepository.Insert(history);