diff options
| author | 2009-07-16 16:59:44 -0500 | |
|---|---|---|
| committer | 2009-07-21 16:44:59 -0700 | |
| commit | 5e9760c16b0b0dca96b59fdb2fd3c875ecfd33eb (patch) | |
| tree | 1881ea6c3c982f6481ff06564d88d272e2f907cd | |
| parent | 078bc317b741b601b857f64393e639df0e9a7dc4 (diff) | |
Fix remote caller ID unknow issue in 3 way call
| -rw-r--r-- | telephony/java/com/android/internal/telephony/cdma/CdmaConnection.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/telephony/java/com/android/internal/telephony/cdma/CdmaConnection.java b/telephony/java/com/android/internal/telephony/cdma/CdmaConnection.java index 025382da3e32..905dedf2e27d 100644 --- a/telephony/java/com/android/internal/telephony/cdma/CdmaConnection.java +++ b/telephony/java/com/android/internal/telephony/cdma/CdmaConnection.java @@ -161,8 +161,8 @@ public class CdmaConnection extends Connection { isIncoming = false; cnapName = null; - cnapNamePresentation = 0; - numberPresentation = 0; + cnapNamePresentation = Connection.PRESENTATION_ALLOWED; + numberPresentation = Connection.PRESENTATION_ALLOWED; createTime = System.currentTimeMillis(); if (parent != null) { |