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

Commit 2626958c authored by Jinsuk Kim's avatar Jinsuk Kim
Browse files

CEC: Fix a bug not sending <Set Stream Path>

Passes the right flag to manual routing switching method for TV
to send out <Set Stream Path> to the newly selected device(path).

Bug: 17169555
Change-Id: I4a14925e366a433f36b28170e37d041053c0060d
parent cf038760
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -314,7 +314,7 @@ final class HdmiCecLocalDeviceTv extends HdmiCecLocalDevice {
                HdmiCecMessageBuilder.buildRoutingChange(mAddress, oldPath, newPath);
        mService.sendCecCommand(routingChange);
        removeAction(RoutingControlAction.class);
        addAndStartAction(new RoutingControlAction(this, newPath, false, callback));
        addAndStartAction(new RoutingControlAction(this, newPath, true, callback));
    }

    int getPowerStatus() {