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

Commit ab861be6 authored by Sonny Sasaka's avatar Sonny Sasaka
Browse files

Floss: Fix broken `list` command

Wrong index when refactoring. The command should be at index 0 instead
of 1.

Bug: 188718349
Tag: #floss
Test: Ran btclient on Linux

Change-Id: I5fd8d213ca4a37c702b8063d45687e79d624c5df
parent bb589835
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1138,7 +1138,7 @@ impl CommandHandler {
            return Err(self.adapter_not_ready());
        }

        let command = get_arg(args, 1)?;
        let command = get_arg(args, 0)?;

        match &command[..] {
            "bonded" => {