From 78b45c84839ef2475d44fff60cfafd1efb95e875 Mon Sep 17 00:00:00 2001 From: Neil Enns Date: Sat, 1 Mar 2025 07:39:01 -0800 Subject: [PATCH] Use CoreVersion instead --- MobiFlight/MobiFlightModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobiFlight/MobiFlightModule.cs b/MobiFlight/MobiFlightModule.cs index 75167cc3..3fb977d3 100644 --- a/MobiFlight/MobiFlightModule.cs +++ b/MobiFlight/MobiFlightModule.cs @@ -137,7 +137,7 @@ public bool HasMfFirmware() // Returns true if the board is running a firmware build from a pull request. public bool IsPullRequestBuild { - get { return Version?.StartsWith("0.0.") ?? false; } + get { return CoreVersion?.StartsWith("0.0.") ?? false; } } public Config.Config Config