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

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

Check mAdnCache is not null before loading FDN. am: fd39f04d

parents 947c839e fd39f04d
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));