mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Publish dates timezone in history details for grabbed releases
This commit is contained in:
@@ -224,7 +224,7 @@ namespace NzbDrone.Core.History
|
|||||||
|
|
||||||
if (message.Release.PublishDate != DateTime.MinValue)
|
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);
|
_historyRepository.Insert(history);
|
||||||
|
Reference in New Issue
Block a user