Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/20ac0bb0e150d8909cb009dce2c644874835b282?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Avoid import loop for already imported movies

(cherry picked from commit b183743d9f0a0b15e4a9db0a9d3d2d1c238b0d9c)

Closes 
pull/9731/head
Bogdan 1 year ago
parent 9ffa1cc2b9
commit 20ac0bb0e1

@ -115,7 +115,7 @@ namespace NzbDrone.Core.Test.MediaFiles.MovieImport.Specifications
GivenHistory(history);
Subject.IsSatisfiedBy(_localMovie, _downloadClientItem).Accepted.Should().BeTrue();
Subject.IsSatisfiedBy(_localMovie, _downloadClientItem).Accepted.Should().BeFalse();
}
}
}

@ -67,6 +67,11 @@ namespace NzbDrone.Core.MediaFiles.MovieImport.Specifications
return Decision.Reject("Movie file already imported at {0}", lastImported.Date.ToLocalTime());
}
}
else
{
_logger.Debug("Movie file previously imported at {0}", lastImported.Date);
return Decision.Reject("Movie file already imported at {0}", lastImported.Date.ToLocalTime());
}
return Decision.Accept();
}

Loading…
Cancel
Save