Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/model/torrent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ pub enum State {
/// Torrent has just started downloading and is fetching metadata
#[serde(rename = "metaDL")]
MetaDL,
/// Torrent is forced to download metadata, ignoring the queue limit
#[serde(rename = "forcedMetaDL")]
ForcedMetaDL,
/// Torrent is paused and has NOT finished downloading,
/// stoppedDL is new name in qBit5+
#[serde(rename = "pausedDL", alias = "stoppedDL")]
Expand Down
Loading