mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 06:27:08 -04:00
Fixed: UTC time sent to UI for already imported message
(cherry picked from commit 3f598ffa6fbec90ecdbb266de4b0fe7558fbbc30)
This commit is contained in:
parent
871e78b314
commit
d4ce08a044
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ namespace NzbDrone.Core.MediaFiles.MovieImport.Specifications
|
|||
if (lastImported.DownloadId == downloadClientItem.DownloadId)
|
||||
{
|
||||
_logger.Debug("Movie file previously imported at {0}", lastImported.Date);
|
||||
return Decision.Reject("Movie file already imported at {0}", lastImported.Date);
|
||||
return Decision.Reject("Movie file already imported at {0}", lastImported.Date.ToLocalTime());
|
||||
}
|
||||
|
||||
return Decision.Accept();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue