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 = {}