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

Commit a1be11ac authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by Gerrit Code Review
Browse files

Merge "btm_iso: Relax iso_handle check for read link quality function"

parents 29bb459d bcb4a79e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -355,7 +355,10 @@ struct iso_impl {

  void read_iso_link_quality(uint16_t iso_handle) {
    iso_base* iso = GetIsoIfKnown(iso_handle);
    LOG_ASSERT(iso != nullptr) << "No such iso connection";
    if (iso == nullptr) {
      LOG(ERROR) <<__func__ << "No such iso connection: " << +iso_handle;
      return;
    }

    btsnd_hcic_read_iso_link_quality(
        iso_handle, base::BindOnce(&iso_impl::on_iso_link_quality_read,