Fixed SabPriorityType of Force being Top in the model.

This commit is contained in:
Mark McDowall 2012-02-01 15:25:38 -08:00
parent a83dbbb16f
commit df6db27d21
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -10,7 +10,7 @@ namespace NzbDrone.Web.Models
public class DownloadClientSettingsModel
{
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")]
[DataType(DataType.Text)]