mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Added additional priorities supported by SABnzbd.
From shypike:This is the (kind of weird) priority table: TOP_PRIORITY = 2 HIGH_PRIORITY = 1 NORMAL_PRIORITY = 0 LOW_PRIORITY = -1 DEFAULT_PRIORITY = -100 PAUSED_PRIORITY = -2 -100 won't do a thing, since it means: whatever is default.
This commit is contained in:
parent
3a9f053a17
commit
e7cbc4cbcf
2 changed files with 5 additions and 2 deletions
|
@ -96,6 +96,6 @@ namespace NzbDrone.Web.Models
|
|||
set;
|
||||
}
|
||||
|
||||
public SelectList PrioritySelectList = new SelectList(new string[] { "Low", "Normal", "High" });
|
||||
public SelectList PrioritySelectList = new SelectList(new string[] { "Default", "Paused", "Low", "Normal", "High", "Top" });
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue