From 426bb528aaab4c6f594996fdbc35d316d53bc36d Mon Sep 17 00:00:00 2001 From: Benjamin Mah Date: Fri, 14 Feb 2025 11:58:12 -0500 Subject: [PATCH] Changed classification from Fenix::General to GeckoView::General --- bugbot/rules/component.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bugbot/rules/component.py b/bugbot/rules/component.py index 812425081..aeff182ae 100644 --- a/bugbot/rules/component.py +++ b/bugbot/rules/component.py @@ -128,7 +128,10 @@ def meets_threshold(bug_data): confidence = data["prob"][data["index"]] if confidence > self.fenix_confidence_threshold: - data["class"] = f"Fenix::{data['class']}" + if data["class"] == "General": + data["class"] = "GeckoView::General" + else: + data["class"] = f"Fenix::{data['class']}" bugs[bug_id] = data results = {}