Fixed: UTC time sent to UI for already imported message

(cherry picked from commit 3f598ffa6fbec90ecdbb266de4b0fe7558fbbc30)

Closes #3285
pull/4155/head
Mark McDowall 1 year ago committed by Bogdan
parent 44824df7e4
commit 55c65d3d3d

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

Loading…
Cancel
Save