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

Commit 7b7cccc6 authored by Archie Pusaka's avatar Archie Pusaka Committed by Gerrit Code Review
Browse files

Merge "Always check for no GATT transaction before sending request"

parents 6ad8c894 0182faac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ void server_attr_request_cback(uint16_t conn_id, uint32_t trans_id,
 * Returns true if read started, else false if GAP is busy.
 */
bool send_cl_read_request(tGAP_CLCB& clcb) {
  if (!clcb.requests.size()) {
  if (!clcb.requests.size() || clcb.cl_op_uuid != 0) {
    return false;
  }