From 95a553ea9416338fdde84b6d52be751dbc4f4c9e Mon Sep 17 00:00:00 2001 From: Agus Zubiaga Date: Wed, 3 Dec 2025 11:26:40 -0300 Subject: [PATCH] Do not report rejected sweep predictions to cloud (#44075) Release Notes: - N/A Co-authored-by: MrSubidubi --- crates/zeta/src/zeta.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index dba90abbc839566781d18308e53c4b0faa96e1d7..33d37d9e3aa0c5c89830d5ec86663330da1daf77 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -998,6 +998,11 @@ impl Zeta { reason: EditPredictionRejectReason, was_shown: bool, ) { + match self.edit_prediction_model { + ZetaEditPredictionModel::Zeta1 | ZetaEditPredictionModel::Zeta2 => {} + ZetaEditPredictionModel::Sweep => return, + } + self.reject_predictions_tx .unbounded_send(EditPredictionRejection { request_id: prediction_id.to_string(),