Merge "IMS: Get the scheme-specific part from the URI"
diff --git a/src/com/android/server/telecom/CallsManager.java b/src/com/android/server/telecom/CallsManager.java
index 7014b9b..992a324 100644
--- a/src/com/android/server/telecom/CallsManager.java
+++ b/src/com/android/server/telecom/CallsManager.java
@@ -497,7 +497,7 @@
         boolean isAddParticipant = ((extras != null) && (extras.getBoolean(
                 TelephonyProperties.ADD_PARTICIPANT_KEY, false)));
         if (isAddParticipant) {
-            addParticipant(handle.toString());
+            addParticipant(handle.getSchemeSpecificPart());
             mInCallController.bringToForeground(false);
             return null;
         }