From 5aff32575ccd74e7dda1f05e476e79b20513ef03 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sat, 7 Sep 2024 16:13:05 +0200 Subject: [PATCH] About: Fix BLE stack version string --- CHANGELOG.md | 1 + applications/settings/about/about.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9acd877ad..298a5d769 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ - OFW: Fix Guard GProxII False Positive and 36-bit Parsing (by @zinongli) - Desktop: Fallback Poweroff prompt when power settings is unavailable (by @Willy-JL) - Storage: Fallback SD format prompt when storage settings is unavailable (by @Willy-JL) +- About: Fix BLE stack version string (by @Willy-JL) - OFW: Loader: Warn about missing SD card for main apps (by @Willy-JL) - OFW: NFC: Fix crash on Ultralight unlock (by @Astrrra) - OFW: RPC: Broken file interaction fixes (by @RebornedBrain) diff --git a/applications/settings/about/about.c b/applications/settings/about/about.c index c5f839ec6..3052e63b8 100644 --- a/applications/settings/about/about.c +++ b/applications/settings/about/about.c @@ -165,7 +165,7 @@ static DialogMessageButton about_screen_fw_version(DialogsApp* dialogs, DialogMe buffer = furi_string_alloc(); const Version* ver = furi_hal_version_get_firmware_version(); const BleGlueC2Info* c2_ver = NULL; -#ifdef SRV_BT +#if defined(SRV_BT) || defined(FAP_VERSION) c2_ver = ble_glue_get_c2_info(); #endif