Fixed: UTC time sent to UI for already imported message

(cherry picked from commit 3f598ffa6fbec90ecdbb266de4b0fe7558fbbc30)

Closes #3285
This commit is contained in:
Mark McDowall 2023-01-13 17:39:00 -08:00 committed by Bogdan
commit 55c65d3d3d

View file

@ -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();