fix: incorrect enum values for MaxRatioAction (#673) @Larsluph

This commit is contained in:
Rémi Marseault 2023-02-22 21:42:50 +01:00 committed by GitHub
parent 9d31ff4360
commit afa9f0ef30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {