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

Commit d755d11e authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 965d5337: am 38f53488: Merge "NullPointerException at handleMessage(GSMPhone.java)"

Merge commit '965d5337'

* commit '965d5337':
  NullPointerException at handleMessage(GSMPhone.java)
parents 8775eae9 965d5337
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1204,7 +1204,8 @@ public class GSMPhone extends PhoneBase {
                // Check if this is a different SIM than the previous one. If so unset the
                // voice mail number.
                String imsi = getVmSimImsi();
                if (imsi != null && !getSubscriberId().equals(imsi)) {
                String imsiFromSIM = getSubscriberId();
                if (imsi != null && imsiFromSIM != null && !imsiFromSIM.equals(imsi)) {
                    storeVoiceMailNumber(null);
                    setVmSimImsi(null);
                }