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

Commit 4c71c42f authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "use PhoneConstants.PHONE_KEY instead of PHONE_ID"

parents 2508c2bf f525414d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ import android.telephony.Rlog;
import android.telephony.ServiceState;

import com.android.internal.telephony.CommandsInterface;
import com.android.internal.telephony.PhoneConstants;
import com.android.internal.telephony.gsm.SimTlv;
//import com.android.internal.telephony.gsm.VoiceMailConstants;

@@ -362,7 +363,7 @@ public class IsimUiccRecords extends IccRecords implements IsimRecords {
    private void broadcastRefresh() {
        Intent intent = new Intent(INTENT_ISIM_REFRESH);
        log("send ISim REFRESH: " + INTENT_ISIM_REFRESH);
        intent.putExtra("PHONE_ID", mParentApp.getPhoneId());
        intent.putExtra(PhoneConstants.PHONE_KEY, mParentApp.getPhoneId());
        mContext.sendBroadcast(intent);
    }