mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
parent
285288db1a
commit
baf83b4c71
@ -163,7 +163,17 @@ private ManualImportItem ProcessFile(string file, string downloadId, string fold
|
|||||||
var importDecisions = _importDecisionMaker.GetImportDecisions(new List<string> {file},
|
var importDecisions = _importDecisionMaker.GetImportDecisions(new List<string> {file},
|
||||||
series, downloadClientItem, null, SceneSource(series, folder));
|
series, downloadClientItem, null, SceneSource(series, folder));
|
||||||
|
|
||||||
return importDecisions.Any() ? MapItem(importDecisions.First(), folder, downloadId) : null;
|
return importDecisions.Any() ? MapItem(importDecisions.First(), folder, downloadId) : new ManualImportItem
|
||||||
|
{
|
||||||
|
DownloadId = downloadId,
|
||||||
|
Path = file,
|
||||||
|
RelativePath = folder.GetRelativePath(file),
|
||||||
|
Name = Path.GetFileNameWithoutExtension(file),
|
||||||
|
Rejections = new List<Rejection>
|
||||||
|
{
|
||||||
|
new Rejection("Unable to process file")
|
||||||
|
}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool SceneSource(Series series, string folder)
|
private bool SceneSource(Series series, string folder)
|
||||||
|
Loading…
Reference in New Issue
Block a user