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

Commit e20438f8 authored by Dmitrii Merkurev's avatar Dmitrii Merkurev
Browse files

fastboot: fix network connected device status



Bug: 303236495
Change-Id: Iceac3509531af1af65b455b1a3d5f5ab9029fda6
Signed-off-by: default avatarDmitrii Merkurev <dimorinny@google.com>
parent e9c24760
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -402,7 +402,7 @@ static std::unique_ptr<Transport> NetworkDeviceConnected(bool print = false) {
        transport = open_device(device.c_str(), false, false);

        if (print) {
            PrintDevice(device.c_str(), transport ? "offline" : "fastboot");
            PrintDevice(device.c_str(), transport ? "fastboot" : "offline");
        }

        if (transport) {