Loading telephony/java/com/android/internal/telephony/CallManager.java +2 −0 Original line number Diff line number Diff line Loading @@ -895,6 +895,8 @@ public final class CallManager { public boolean getMute() { if (hasActiveFgCall()) { return getActiveFgCall().getPhone().getMute(); } else if (hasActiveBgCall()) { return getFirstActiveBgCall().getPhone().getMute(); } return false; } Loading telephony/java/com/android/internal/telephony/sip/SipPhone.java +3 −1 Original line number Diff line number Diff line Loading @@ -309,7 +309,9 @@ public class SipPhone extends SipPhoneBase { } public boolean getMute() { return foregroundCall.getMute(); return (foregroundCall.getState().isAlive() ? foregroundCall.getMute() : backgroundCall.getMute()); } public Call getForegroundCall() { Loading Loading
telephony/java/com/android/internal/telephony/CallManager.java +2 −0 Original line number Diff line number Diff line Loading @@ -895,6 +895,8 @@ public final class CallManager { public boolean getMute() { if (hasActiveFgCall()) { return getActiveFgCall().getPhone().getMute(); } else if (hasActiveBgCall()) { return getFirstActiveBgCall().getPhone().getMute(); } return false; } Loading
telephony/java/com/android/internal/telephony/sip/SipPhone.java +3 −1 Original line number Diff line number Diff line Loading @@ -309,7 +309,9 @@ public class SipPhone extends SipPhoneBase { } public boolean getMute() { return foregroundCall.getMute(); return (foregroundCall.getState().isAlive() ? foregroundCall.getMute() : backgroundCall.getMute()); } public Call getForegroundCall() { Loading