From f1d69ac5bb88f9666d42f51ce978eb57d3a58548 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Wed, 11 Jun 2025 09:25:22 -0700 Subject: [PATCH] Revert non working changes to firmware link for latest stable version --- Meshtastic/Views/Settings/Firmware.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Settings/Firmware.swift b/Meshtastic/Views/Settings/Firmware.swift index 0e21850a..2380b677 100644 --- a/Meshtastic/Views/Settings/Firmware.swift +++ b/Meshtastic/Views/Settings/Firmware.swift @@ -199,7 +199,7 @@ struct Firmware: View { latestStable = fw.releases.stable.first let archString = currentDevice?.architecture.rawValue ?? "" let ls = fw.releases.stable.first(where: { $0.zipURL.contains(archString) == true }) - latestStable = fw.releases.stable.first(where: { $0.zipURL.contains(archString) == true }) + latestStable = fw.releases.stable.first latestAlpha = fw.releases.alpha.first } }