mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Adjust file priorities to make Highest actually the highest allowed by libtorrent and High has been changed to what Highest was
This commit is contained in:
parent
7dd54b4b34
commit
71f9ef6499
1 changed files with 4 additions and 4 deletions
|
@ -104,12 +104,12 @@ TORRENT_STATE = [
|
||||||
FILE_PRIORITY = {
|
FILE_PRIORITY = {
|
||||||
0: "Do Not Download",
|
0: "Do Not Download",
|
||||||
1: "Normal Priority",
|
1: "Normal Priority",
|
||||||
2: "High Priority",
|
5: "High Priority",
|
||||||
5: "Highest Priority",
|
7: "Highest Priority",
|
||||||
"Do Not Download": 0,
|
"Do Not Download": 0,
|
||||||
"Normal Priority": 1,
|
"Normal Priority": 1,
|
||||||
"High Priority": 2,
|
"High Priority": 5,
|
||||||
"Highest Priority": 5
|
"Highest Priority": 7
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue