AddSeries/Index will show the RotoDirs Panel if no root dirs are in the DB.

This commit is contained in:
Mark McDowall 2011-06-06 14:31:08 -07:00
parent 4d3ba62e5d
commit 96670d0567
2 changed files with 7 additions and 0 deletions

View file

@ -79,6 +79,11 @@ namespace NzbDrone.Web.Controllers
var defaultQuality = Convert.ToInt32(_configProvider.DefaultQualityProfile);
var selectList = new SelectList(profiles, "QualityProfileId", "Name", defaultQuality);
ViewData["qualities"] = selectList;
ViewData["ShowRootDirs"] = false;
//There are no RootDirs Show the RootDirs Panel
if (rootDirs.Count == 0)
ViewData["ShowRootDirs"] = true;
return View(rootDirs);
}