Fixed SabPriorityType of Force being Top in the model.

pull/3113/head
Mark McDowall 13 years ago
parent a83dbbb16f
commit df6db27d21

@ -7,6 +7,6 @@
Low = -1, Low = -1,
Normal = 0, Normal = 0,
High = 1, High = 1,
Top = 2 Force = 2
} }
} }

@ -10,7 +10,7 @@ namespace NzbDrone.Web.Models
public class DownloadClientSettingsModel public class DownloadClientSettingsModel
{ {
public SelectList PrioritySelectList = public SelectList PrioritySelectList =
new SelectList(new[] {"Default", "Paused", "Low", "Normal", "High", "Top"}); new SelectList(new[] {"Default", "Paused", "Low", "Normal", "High", "Force"});
[Required(ErrorMessage = "Please enter a valid host")] [Required(ErrorMessage = "Please enter a valid host")]
[DataType(DataType.Text)] [DataType(DataType.Text)]

Loading…
Cancel
Save