mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-10 23:29:53 +02:00
Fixed bug where status was shown instead of title on SeriesDetail page
This commit is contained in:
parent
a12e148d54
commit
0e86653d8a
@ -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 New Issue
Block a user