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