[FL-2243] Restart BT advertising after forgetting devices #982

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
gornekich
2022-02-07 16:37:56 +03:00
committed by GitHub
parent 40479e1761
commit 3f6deecdae
4 changed files with 10 additions and 3 deletions

View File

@@ -43,10 +43,11 @@ bool bt_save_key_storage(Bt* bt) {
bool bt_delete_key_storage(Bt* bt) {
furi_assert(bt);
bool delete_succeed = false;
bool bt_is_active = furi_hal_bt_is_active();
furi_hal_bt_stop_advertising();
delete_succeed = furi_hal_bt_clear_white_list();
if(bt->bt_settings.enabled) {
if(bt_is_active) {
furi_hal_bt_start_advertising();
}