mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
use Number.MAX_VALUE rather than 99999
This commit is contained in:
parent
1c807ad7c8
commit
7c5dacba5f
1 changed files with 1 additions and 1 deletions
|
@ -47,6 +47,6 @@ Deluge.data.SortTypes = {
|
|||
},
|
||||
|
||||
asQueuePosition: function(value) {
|
||||
return (value > -1) ? value : 9999999;
|
||||
return (value > -1) ? value : Number.MAX_VALUE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue