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

Commit dc63ee41 authored by Aishwarya Mallamapti's avatar Aishwarya Mallamapti Committed by Automerger Merge Worker
Browse files

Check mAdnCache is not null before loading FDN. am: 886684aa

parents 9431a8b5 886684aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1687,7 +1687,7 @@ public abstract class IccRecords extends Handler implements IccConstants {
    }

    public void loadFdnRecords() {
        if (mParentApp != null) {
        if (mParentApp != null && mAdnCache != null) {
            log("Loading FdnRecords");
            mAdnCache.requestLoadAllAdnLike(IccConstants.EF_FDN, EF_EXT2,
                    obtainMessage(EVENT_GET_FDN_DONE));