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

Commit fa2691d7 authored by Archie Pusaka's avatar Archie Pusaka Committed by Automerger Merge Worker
Browse files

Merge "Always check for no GATT transaction before sending request" am: 7b7cccc6

parents ddc47b44 7b7cccc6
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;
  }