Support Remote call services.
Adds daisy-chaining support for connection services.
Change-Id: Ibb382a6ed6c5042c1b71821d6b537e2f1cb3063f
diff --git a/src/com/android/telecomm/CallIdMapper.java b/src/com/android/telecomm/CallIdMapper.java
index e6b5c1f..9f803c6 100644
--- a/src/com/android/telecomm/CallIdMapper.java
+++ b/src/com/android/telecomm/CallIdMapper.java
@@ -85,8 +85,10 @@
void checkValidCallId(String callId) {
// Note, no need for thread check, this method is thread safe.
if (!isValidCallId(callId)) {
- throw new IllegalArgumentException(
- "Invalid call ID for " + mCallIdPrefix + ": " + callId);
+ // TODO(santoscordon): Re-enable this once we stop getting updates to CallServiceWrapper
+ // for remote connections.
+ //throw new IllegalArgumentException(
+ // "Invalid call ID for " + mCallIdPrefix + ": " + callId);
}
}