Skip to content

Commit

Permalink
Update torrent State values
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewCarlson committed Oct 24, 2024
1 parent d474d01 commit 17cf2fb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions models/src/commonMain/kotlin/Torrent.kt
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ class Torrent(
@SerialName("uploading")
UPLOADING,

@SerialName("pausedUP")
PAUSED_UP,
@SerialName("stoppedUP")
STOPPED_UP,

@SerialName("queuedUP")
QUEUED_UP,
Expand All @@ -158,17 +158,20 @@ class Torrent(
@SerialName("forcedUP")
FORCED_UP,

@SerialName("allocating")
ALLOCATING,

@SerialName("downloading")
DOWNLOADING,

@SerialName("metaDL")
META_DL,

@SerialName("pausedDL")
PAUSED_DL,
@SerialName("forcedMetaDL")
FORCED_META_DL,

@SerialName("stoppedDL")
STOPPED_DL,

@SerialName("queuedDL")
QUEUED_DL,

@SerialName("stalledDL")
STALLED_DL,
Expand All @@ -179,9 +182,6 @@ class Torrent(
@SerialName("forcedDL")
FORCED_DL,

@SerialName("queuedDL")
QUEUED_DL,

@SerialName("checkingResumeData")
CHECKING_RESUME_DATA,

Expand Down

0 comments on commit 17cf2fb

Please sign in to comment.