Do not report rejected sweep predictions to cloud (#44075)

Agus Zubiaga and MrSubidubi created

Release Notes:

- N/A

Co-authored-by: MrSubidubi <dev@bahn.sh>

Change summary

crates/zeta/src/zeta.rs | 5 +++++
1 file changed, 5 insertions(+)

Detailed changes

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(),