From 9fa7ef3d1722020ea83868c10182812d2650a336 Mon Sep 17 00:00:00 2001 From: Trey Moen <50057480+greatgitsby@users.noreply.github.com> Date: Mon, 31 Aug 2026 15:46:52 -0700 Subject: [PATCH] ui: clarify branch switcher error message (#38732) --- openpilot/selfdrive/ui/mici/layouts/settings/software.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpilot/selfdrive/ui/mici/layouts/settings/software.py b/openpilot/selfdrive/ui/mici/layouts/settings/software.py index eeb6eb9bf..7a3d84e1e 100644 --- a/openpilot/selfdrive/ui/mici/layouts/settings/software.py +++ b/openpilot/selfdrive/ui/mici/layouts/settings/software.py @@ -253,7 +253,7 @@ class TargetBranchButton(BigButton): def _on_click(self): if not ui_state.params.get("UpdaterAvailableBranches"): - gui_app.push_widget(BigDialog("", tr("Please connect to Wi-Fi to switch branches."))) + gui_app.push_widget(BigDialog("", tr("Failed to get available branches. Ensure you're connected to the internet and try again."))) return gui_app.push_widget(BranchSelectPage(self._on_select))