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

This commit is contained in:
Chung-yih Wang
2010-09-08 03:32:01 -07:00
committed by Android (Google) Code Review

View File

@@ -130,7 +130,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();
}