mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fixed SabPriorityType of Force being Top in the model.
This commit is contained in:
parent
a83dbbb16f
commit
df6db27d21
2 changed files with 2 additions and 2 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue