mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-25 22:46:31 -04:00
Fixed: Import from torrent Download Station should move since DS maintains an internal copy for seeding.
This commit is contained in:
@@ -185,7 +185,7 @@ namespace NzbDrone.Core.MediaFiles
|
||||
var decisions = _importDecisionMaker.GetImportDecisions(videoFiles.ToList(), series, folderInfo, true);
|
||||
var importResults = _importApprovedEpisodes.Import(decisions, true, downloadClientItem, importMode);
|
||||
|
||||
if ((downloadClientItem == null || !downloadClientItem.IsReadOnly) &&
|
||||
if ((downloadClientItem == null || downloadClientItem.CanMoveFiles) &&
|
||||
importResults.Any(i => i.Result == ImportResultType.Imported) &&
|
||||
ShouldDeleteFolder(directoryInfo, series))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user