mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 00:23:59 -07: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 @@ 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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue