1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 01:38:24 +00:00

Merge branch 'markus101'

This commit is contained in:
kay.one 2011-06-26 20:06:26 -07:00
commit b98aab87ae
3 changed files with 6 additions and 2 deletions

View file

@ -85,7 +85,7 @@ public void American_dad_fix()
}
//assert
seasonsNumbers.Should().HaveCount(7);
seasonsNumbers.Should().HaveCount(8);
seasons[1].Should().HaveCount(23);
seasons[2].Should().HaveCount(19);
seasons[3].Should().HaveCount(16);

View file

@ -84,6 +84,10 @@ public virtual void Start(ProgressNotification notification, int targetId)
var importedFiles = _diskScanProvider.Scan(series, subfolder);
importedFiles.ForEach(file => _diskScanProvider.MoveEpisodeFile(file));
//Delete the folder only if all files were removed
if (_diskProvider.GetFiles(subfolder, "*.*", SearchOption.AllDirectories).Length == 0)
_diskProvider.DeleteFolder(subfolder, false);
}
Logger.Debug("New Download Scan Job completed successfully");

View file

@ -54,7 +54,7 @@ public ActionResult AddNew()
{
Path = r.Path,
CleanPath = r.Path.Replace(Path.DirectorySeparatorChar, '|').Replace(Path.VolumeSeparatorChar, '^').Replace('\'', '`')
}).ToList();
});
ViewData["RootDirs"] = rootDirs;
ViewData["DirSep"] = Path.DirectorySeparatorChar.ToString().Replace(Path.DirectorySeparatorChar, '|');