Fixed: UTC time sent to UI for already imported message

Closes #5366
This commit is contained in:
Mark McDowall 2023-01-13 17:39:00 -08:00
parent 67035b9266
commit 3f598ffa6f
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
if (lastImported.DownloadId == downloadClientItem.DownloadId)
{
_logger.Debug("Episode file previously imported at {0}", lastImported.Date);
return Decision.Reject("Episode file already imported at {0}", lastImported.Date);
return Decision.Reject("Episode file already imported at {0}", lastImported.Date.ToLocalTime());
}
}