Fixed: UTC time sent to UI for already imported message

Closes #5366
pull/5374/head
Mark McDowall 1 year ago
parent 67035b9266
commit 3f598ffa6f

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

Loading…
Cancel
Save