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

Commit 70a1faa4 authored by Yoshiaki Naka's avatar Yoshiaki Naka Committed by android-build-merger
Browse files

Merge "Unreliable number(255) for voice message count should not be provided"...

Merge "Unreliable number(255) for voice message count should not be provided" am: 619d1c03 am: 31ed7fa8
am: 44214310

Change-Id: Ie45bb72045f90b393ca0ffc2f14fc7eb7b692b49
parents 67608f93 44214310
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -518,7 +518,7 @@ public class SIMRecords extends IccRecords {
            voiceMailWaiting = ((mEfMWIS[0] & 0x01) != 0);
            countVoiceMessages = mEfMWIS[1] & 0xff;

            if (voiceMailWaiting && countVoiceMessages == 0) {
            if (voiceMailWaiting && (countVoiceMessages == 0 || countVoiceMessages == 0xff)) {
                // Unknown count = -1
                countVoiceMessages = -1;
            }