About: Fix BLE stack version string

This commit is contained in:
Willy-JL
2024-09-07 16:13:05 +02:00
parent 3485693c00
commit 5aff32575c
2 changed files with 2 additions and 1 deletions

View File

@@ -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)

View File

@@ -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