mirror of
https://github.com/codex-storage/deluge.git
synced 2025-03-01 03:20:44 +00:00
Fix #2071 : KeyError in gtkui when file priority set to value '3'
Bug results from setting file priority value in core which does not exist in the FILE_PRIORITY dict used by UIs.
This commit is contained in:
parent
8fdfdc2b25
commit
828b3204b8
@ -105,7 +105,10 @@ FILE_PRIORITY = {
|
||||
0: "Do Not Download",
|
||||
1: "Normal Priority",
|
||||
2: "High Priority",
|
||||
3: "High Priority",
|
||||
4: "High Priority",
|
||||
5: "High Priority",
|
||||
6: "High Priority",
|
||||
7: "Highest Priority",
|
||||
"Do Not Download": 0,
|
||||
"Normal Priority": 1,
|
||||
|
Loading…
x
Reference in New Issue
Block a user