mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixed bug where status was shown instead of title on SeriesDetail page
This commit is contained in:
@@ -183,7 +183,7 @@ namespace NzbDrone.Web.Controllers
|
|||||||
}
|
}
|
||||||
model.Overview = series.Overview;
|
model.Overview = series.Overview;
|
||||||
model.Seasons = _episodeProvider.GetSeasons(seriesId);
|
model.Seasons = _episodeProvider.GetSeasons(seriesId);
|
||||||
model.Title = series.Status;
|
model.Title = series.Title;
|
||||||
model.SeriesId = series.SeriesId;
|
model.SeriesId = series.SeriesId;
|
||||||
|
|
||||||
return View(model);
|
return View(model);
|
||||||
|
|||||||
Reference in New Issue
Block a user