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

Commit 93b14b38 authored by Archie Pusaka's avatar Archie Pusaka Committed by Gerrit Code Review
Browse files

Merge "hcidoc: fix the number of ACL connections" into main

parents e9c1990b cd6c7a70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ impl fmt::Display for DeviceInformation {
            address = self.address,
            address_type = self.address_type,
            device_names = DeviceInformation::print_names(&self.names),
            num_connections = self.acls.len()
            num_connections = self.acls[&Transport::BREDR].len() + self.acls[&Transport::LE].len()
        );
        for acl in &self.acls[&Transport::BREDR] {
            let _ = write!(f, "{}", acl);