diff --git a/daemon/src/qmdl_store.rs b/daemon/src/qmdl_store.rs index db1fbc2..ea42dae 100644 --- a/daemon/src/qmdl_store.rs +++ b/daemon/src/qmdl_store.rs @@ -58,7 +58,9 @@ pub struct ManifestEntry { /// The system time when the last message was recorded to the file #[cfg_attr(feature = "apidocs", schema(value_type = String))] pub last_message_time: Option>, - /// The size of the QMDL file in bytes + /// The size of the uncompressed QMDL data in bytes. Previously this was + /// called `qmdl_size_bytes`, so alias it for backwards compatibility. + #[serde(alias = "qmdl_size_bytes")] pub uncompressed_qmdl_size_bytes: usize, /// The rayhunter daemon version which generated the file pub rayhunter_version: Option,