1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-30 10:51:42 +00:00

Fixed: File imports via CDH are no longer checked for file locks.

This commit is contained in:
Taloth Saldono 2014-11-23 21:15:36 +01:00
parent 909f601929
commit 08d92c5511

View file

@ -138,11 +138,14 @@ public List<ImportResult> ProcessFile(FileInfo fileInfo, DownloadClientItem down
return new List<ImportResult>() { new ImportResult(new ImportDecision(new LocalEpisode { Path = fileInfo.FullName }, "Unknown Series"), String.Format("Unknown Series for file: {0}", fileInfo.Name)) };
}
if (downloadClientItem == null)
{
if (_diskProvider.IsFileLocked(fileInfo.FullName))
{
_logger.Debug("[{0}] is currently locked by another process, skipping", fileInfo.FullName);
return new List<ImportResult>();
}
}
var decisions = _importDecisionMaker.GetImportDecisions(new List<string>() { fileInfo.FullName }, series, true);
return _importApprovedEpisodes.Import(decisions, true, downloadClientItem);