mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 09:49:00 +00:00
Fixed bug where status was shown instead of title on SeriesDetail page
This commit is contained in:
parent
a12e148d54
commit
0e86653d8a
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ public ActionResult Details(int seriesId)
|
|||
}
|
||||
model.Overview = series.Overview;
|
||||
model.Seasons = _episodeProvider.GetSeasons(seriesId);
|
||||
model.Title = series.Status;
|
||||
model.Title = series.Title;
|
||||
model.SeriesId = series.SeriesId;
|
||||
|
||||
return View(model);
|
||||
|
|
Loading…
Reference in a new issue