mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: incorrect enum values for MaxRatioAction (#673) @Larsluph
This commit is contained in:
parent
9d31ff4360
commit
afa9f0ef30
1 changed files with 4 additions and 4 deletions
|
@ -22,10 +22,10 @@ export enum Encryption {
|
|||
}
|
||||
|
||||
export enum MaxRatioAction {
|
||||
PAUSE_TORRENT,
|
||||
REMOVE_TORRENT,
|
||||
REMOVE_TORRENT_AND_FILES,
|
||||
ENABLE_SUPERSEEDING
|
||||
PAUSE_TORRENT = 0,
|
||||
REMOVE_TORRENT = 1,
|
||||
REMOVE_TORRENT_AND_FILES = 3,
|
||||
ENABLE_SUPERSEEDING = 2
|
||||
}
|
||||
|
||||
export enum ProxyType {
|
||||
|
|
Loading…
Add table
Reference in a new issue