diff --git a/src/model/torrent.rs b/src/model/torrent.rs index 93470bf..142bc53 100644 --- a/src/model/torrent.rs +++ b/src/model/torrent.rs @@ -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")]