Refresh series logs more and is done in alphabetical order

This commit is contained in:
Mark McDowall
2013-11-07 17:52:50 -08:00
parent 94d50de6cb
commit 3789602e56
2 changed files with 3 additions and 2 deletions

View File

@@ -106,7 +106,7 @@ namespace NzbDrone.Core.Tv
}
else
{
var allSeries = _seriesService.GetAllSeries().OrderBy(c => c.LastInfoSync).ToList();
var allSeries = _seriesService.GetAllSeries().OrderBy(c => c.Title).ToList();
foreach (var series in allSeries)
{