Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b6676ff authored by Sandeep Kunta's avatar Sandeep Kunta Committed by Linux Build Service Account
Browse files

Telecomm: Use proper bit for Voice privacy

in new code, DISCONNECT_FROM_CONFERENCE is introduced newly and is using
same bit as voice privacy and hence disconnect option not showing up
for conference. Hence use a different bit for voice privacy

CRs-Fixed: 738068
Change-Id: I80b7ae7b24ac096dc5bf5abd044bcd8020d06c1d
parent e3de3180
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ public final class PhoneCapabilities {
     * Call is using voice privacy.
     * @hide
     */
    public static final int VOICE_PRIVACY = 0x00002000;
    public static final int VOICE_PRIVACY = 0x00008000;

    public static String toString(int capabilities) {
        StringBuilder builder = new StringBuilder();