mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
Fixed Series Details
This commit is contained in:
@@ -136,8 +136,7 @@ namespace NzbDrone.Web.Controllers
|
||||
}).ToList();
|
||||
model.Seasons = seasons;
|
||||
|
||||
var qualities = (from QualityTypes q in Enum.GetValues(typeof(QualityTypes))
|
||||
select new { Id = (int)q, Name = q.ToString() }).ToList();
|
||||
var qualities = QualityTypes.All().ToList();
|
||||
|
||||
model.QualitySelectList = new SelectList(qualities.Where(q => q.Id > 0), "Id", "Name");
|
||||
|
||||
|
Reference in New Issue
Block a user