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

Commit d00213c8 authored by Benson Huang's avatar Benson Huang Committed by Matthew Xie
Browse files

[BT] Fix bug: MAP client can not get MessageListing for draft folder



Currently c.getColumnIndex(Mms.PRIORITY) in setPriority method is returning
-1 which is causing c.getInt(-1) to throw a java.lang.IllegalStateException.

The fix is to add the column Mms.PRIORITY in MMS_PROJECTION

Bug 15069197 and 15071221

Change-Id: I9f296415efd5e10970d9f24652cab1022dad5efd
Signed-off-by: default avatarBenson Huang <benson.huang@mediatek.com>
parent 6f3083bc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -102,6 +102,7 @@ public class BluetoothMapContent {
        Mms.READ,
        Mms.MESSAGE_BOX,
        Mms.STATUS,
        Mms.PRIORITY,
    };

    private class FilterInfo {