aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorShriram Ganesh <sganesh@codeaurora.org>2015-12-01 16:02:06 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2015-12-08 20:59:50 -0800
commit4aa9b65816b930c305120a20ccabb152c4ea6699 (patch)
treef7c24a5af91faf71d54caff2ff368fdf6b4cd719 /src
parent5fd017a6e23b99b9be2544cc04d9effc32342501 (diff)
downloadandroid_frameworks_opt_telephony-4aa9b65816b930c305120a20ccabb152c4ea6699.tar.gz
android_frameworks_opt_telephony-4aa9b65816b930c305120a20ccabb152c4ea6699.tar.bz2
android_frameworks_opt_telephony-4aa9b65816b930c305120a20ccabb152c4ea6699.zip
Fix disabled merge button on conference failure.
The notification for the conference failure is not notified on the foreground call. As a result in a scenario of foreground single party call and background conference call merge, the notifications do not go out on the foreground call. This is because of internal logic of merge peer and merge host that are maintained during conference scenarios that makes the host as conference call. Change-Id: Ia910c1b00e3b4a232153c5b3873a4ec708830f66 CRs-Fixed: 931958
Diffstat (limited to 'src')
-rw-r--r--src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java b/src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java
index 48ffcf9ee..a0213ef7e 100644
--- a/src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java
+++ b/src/java/com/android/internal/telephony/imsphone/ImsPhoneCallTracker.java
@@ -1416,7 +1416,7 @@ public final class ImsPhoneCallTracker extends CallTracker {
// Start plumbing this even through Telecom so other components can take
// appropriate action.
- ImsPhoneConnection conn = findConnection(call);
+ ImsPhoneConnection conn = findConnection(mForegroundCall.getImsCall());
if (conn != null) {
conn.onConferenceMergeFailed();
}