Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 748fad9d authored by Jeremy Wu's avatar Jeremy Wu Committed by Gerrit Code Review
Browse files

Merge "floss: check if BCC is allowed to open SCO" into main

parents f31e6f92 31557c8e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1906,6 +1906,12 @@ bool bta_ag_is_sco_open_allowed(tBTA_AG_SCB* p_scb, const std::string event) {
    }
  }
#endif
#ifdef TARGET_FLOSS
  if (event == "BTA_AG_LOCAL_EVT_BCC") {
    return false;
  }
#endif

  return true;
}