From 0e86653d8acceebc17f096cdf42cdc1dea671b1b Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Fri, 17 Jun 2011 23:41:31 -0700 Subject: [PATCH] Fixed bug where status was shown instead of title on SeriesDetail page --- NzbDrone.Web/Controllers/SeriesController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Web/Controllers/SeriesController.cs b/NzbDrone.Web/Controllers/SeriesController.cs index 62cf93632..20b8c4e4f 100644 --- a/NzbDrone.Web/Controllers/SeriesController.cs +++ b/NzbDrone.Web/Controllers/SeriesController.cs @@ -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);