From 9191540e86eef8f4530387fd6fe4055b16784563 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Wed, 1 Apr 2026 11:40:04 -0700 Subject: [PATCH] qmdl_store: maintain backwards compatibility --- daemon/src/qmdl_store.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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,