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

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

Merge "Bluetooth: Map: proper email filtering based on message Type"

parents 5635de47 c5b5b193
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -1497,10 +1497,12 @@ public class BluetoothMapContent {
        if (msgType == -1)
            return true;

        if ((msgType & 0x16) == 0)
        if ((msgType & 0x04) == 0) {
           return true;

        } else {
           if (V) Log.v(TAG, "Invalid Message Filter");
           return false;
        }

    }