修复事件跨服务序列化生成空窗口

This commit is contained in:
boris
2026-09-09 23:54:22 +08:00
parent 35acb1c7e7
commit b281045df5
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ pub enum Expr {
Operator {
name: String,
args: Vec<Expr>,
#[serde(default)]
#[serde(default, skip_serializing_if = "Option::is_none")]
window: Option<usize>,
},
}