Browse Source

feat(endpoints): remove redundant connection check

xmkb
Joel Spadin 4 years ago
parent
commit
821f054071
  1. 2
      app/src/ble.c

2
app/src/ble.c

@ -169,7 +169,7 @@ int update_advertising() { @@ -169,7 +169,7 @@ int update_advertising() {
struct bt_conn *conn;
enum advertising_type desired_adv = ZMK_ADV_NONE;
if (active_profile_is_open() || !zmk_ble_active_profile_is_connected()) {
if (active_profile_is_open()) {
desired_adv = ZMK_ADV_CONN;
} else if (!zmk_ble_active_profile_is_connected()) {
desired_adv = ZMK_ADV_CONN;

Loading…
Cancel
Save