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

Commit c910512a authored by Yorke Lee's avatar Yorke Lee
Browse files

Switch convertAndStrip to normalizeNumber

normalizeNumber(to be renamed in the future) is a bit stricter about
converting the number into a dialable one.

Bug: 6948882
Change-Id: I09417822de714beb45664ca4f0916e40013a34bb
parent 21d991ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ public class DialerPhoneNumberListAdapter extends PhoneNumberListAdapter {
    @Override
    public void setQueryString(String queryString) {
        mFormattedQueryString = PhoneNumberUtils.formatNumber(
                PhoneNumberUtils.convertAndStrip(queryString), mCountryIso);
                PhoneNumberUtils.normalizeNumber(queryString), mCountryIso);
        super.setQueryString(queryString);
    }
}