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

Commit 4f24aed2 authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android Git Automerger
Browse files

am 66907078: Merge "Fix the dialing from contact for internet address." into gingerbread

Merge commit '66907078' into gingerbread-plus-aosp

* commit '66907078':
  Fix the dialing from contact for internet address.
parents 576b492c 66907078
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ public class PhoneNumberUtils
        Uri uri = intent.getData();
        String scheme = uri.getScheme();

        if (scheme.equals("tel")) {
        if (scheme.equals("tel") || scheme.equals("sip")) {
            return uri.getSchemeSpecificPart();
        }