Fixed bug where status was shown instead of title on SeriesDetail page

This commit is contained in:
kay.one 2011-06-17 23:41:31 -07:00
parent a12e148d54
commit 0e86653d8a
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ namespace NzbDrone.Web.Controllers
}
model.Overview = series.Overview;
model.Seasons = _episodeProvider.GetSeasons(seriesId);
model.Title = series.Status;
model.Title = series.Title;
model.SeriesId = series.SeriesId;
return View(model);