From 55c65d3d3d01ff45763e7d1610baa1c1ca49be24 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 13 Jan 2023 17:39:00 -0800 Subject: [PATCH] Fixed: UTC time sent to UI for already imported message (cherry picked from commit 3f598ffa6fbec90ecdbb266de4b0fe7558fbbc30) Closes #3285 --- .../TrackImport/Specifications/AlreadyImportedSpecification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/MediaFiles/TrackImport/Specifications/AlreadyImportedSpecification.cs b/src/NzbDrone.Core/MediaFiles/TrackImport/Specifications/AlreadyImportedSpecification.cs index f31c94497..dcda7f9a1 100644 --- a/src/NzbDrone.Core/MediaFiles/TrackImport/Specifications/AlreadyImportedSpecification.cs +++ b/src/NzbDrone.Core/MediaFiles/TrackImport/Specifications/AlreadyImportedSpecification.cs @@ -58,7 +58,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications if (lastImported.DownloadId == downloadClientItem.DownloadId) { _logger.Debug("Album previously imported at {0}", lastImported.Date); - return Decision.Reject("Album already imported at {0}", lastImported.Date); + return Decision.Reject("Album already imported at {0}", lastImported.Date.ToLocalTime()); } return Decision.Accept();