mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Fixed: UTC time sent to UI for already imported message
(cherry picked from commit 3f598ffa6fbec90ecdbb266de4b0fe7558fbbc30) Closes #3285
This commit is contained in:
parent
44824df7e4
commit
55c65d3d3d
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
||||||
if (lastImported.DownloadId == downloadClientItem.DownloadId)
|
if (lastImported.DownloadId == downloadClientItem.DownloadId)
|
||||||
{
|
{
|
||||||
_logger.Debug("Album previously imported at {0}", lastImported.Date);
|
_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();
|
return Decision.Accept();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue