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

Commit 13315cf4 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Wifi: Do not ignore wifi interface down event"

parents 7502b4d9 f60e7369
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -278,8 +278,8 @@ public class Tethering extends BaseNetworkObserver {
                    sm.start();
                }
            } else {
                if (isUsb(iface) || isBluetooth(iface) || isWifi(iface) ) {
                    // ignore usb0, bt-pan or wlan0 down after enabling tethering
                if (isUsb(iface) || isBluetooth(iface)) {
                    // ignore usb0, bt-pan down after enabling tethering
                    // we will handle disconnect in interfaceRemoved instead
                    if (VDBG) Log.d(TAG, "ignore interface down for " + iface);
                } else if (sm != null) {