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

Commit 4a2e07a2 authored by Danny Baumann's avatar Danny Baumann
Browse files

Fix incorrect number formatting in call stats details.

Introduced in CAF commit 1d6722e1

Change-Id: I8f5a520aef0fb196a69ff0db5af80f913592e9d7
parent b3d8d697
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -310,7 +310,7 @@ public class ContactInfoHelper {
            }
            }
        }
        }
        if (info != null && info != ContactInfo.EMPTY) {
        if (info != null && info != ContactInfo.EMPTY) {
            if (!isConfUrlLog && TextUtils.isEmpty(postDialString)) {
            if (!isConfUrlLog && !TextUtils.isEmpty(postDialString)) {
                number += postDialString;
                number += postDialString;
            }
            }
            info.formattedNumber = formatPhoneNumber(number, null, countryIso);
            info.formattedNumber = formatPhoneNumber(number, null, countryIso);