summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/server/telecom/ConnectionServiceWrapper.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/server/telecom/ConnectionServiceWrapper.java b/src/com/android/server/telecom/ConnectionServiceWrapper.java
index a7b698a0..55eba5d2 100644
--- a/src/com/android/server/telecom/ConnectionServiceWrapper.java
+++ b/src/com/android/server/telecom/ConnectionServiceWrapper.java
@@ -360,6 +360,9 @@ final class ConnectionServiceWrapper extends ServiceBinder {
// the failure event all the way to InCallUI instead of stopping
// it here. That way we can also handle the UI of notifying that
// the merged has failed.
+ Bundle extras = call.getExtras();
+ extras.putInt("MergeFail", new java.util.Random().nextInt());
+ call.setExtras(extras);
mCallsManager.onMergeFailed(call);
} else {
Log.w(this, "setConferenceMergeFailed, unknown call id: %s", callId);