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

Commit c6cbdea1 authored by xinhe's avatar xinhe Committed by xin He
Browse files

Sim Card full and can't delete messages in 5.0

change permission check

Bug:18458183
Change-Id: Ic7255659432e438fb5dd6b6e51201dc2d9bbbb86
parent 11d4ab2d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -173,9 +173,9 @@ public class IccSmsInterfaceManager {
    }

    protected void enforceReceiveAndSend(String message) {
        mContext.enforceCallingPermission(
        mContext.enforceCallingOrSelfPermission(
                Manifest.permission.RECEIVE_SMS, message);
        mContext.enforceCallingPermission(
        mContext.enforceCallingOrSelfPermission(
                Manifest.permission.SEND_SMS, message);
    }