Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/d4ce08a044d9c175c4b0f4a0a21c3db6bcf93c4c You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: UTC time sent to UI for already imported message

(cherry picked from commit 3f598ffa6fbec90ecdbb266de4b0fe7558fbbc30)
pull/8033/head
Mark McDowall 2 years ago committed by Robin Dadswell
parent 871e78b314
commit d4ce08a044

@ -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…
Cancel
Save