fix: filtered total

This commit is contained in:
2025-12-12 22:52:03 +08:00
parent 6336a451da
commit 094c871218
4 changed files with 45 additions and 30 deletions

View File

@@ -198,7 +198,8 @@ async fn process_response(body: String, method: &str, ctx: &Arc<AppContext>) ->
}
};
let modified_body_str = serde_json::to_string(&response_value).expect("serialization succeeded");
let modified_body_str =
serde_json::to_string(&response_value).expect("serialization succeeded");
let encrypted = ctx.cryptor.encrypt(modified_body_str.clone());
let final_ = action.map(|action| (modified_body_str.clone(), action));