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

Commit e0f787cc authored by Hall Liu's avatar Hall Liu
Browse files

Add PROPERTY_DOWNGRADED_CONFERENCE to logging

Bug: 153530054
Test: manual
Change-Id: I37558527ef867b49fc597ae2cdaf1620cfde0ab1
parent 2f3b72b8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1068,6 +1068,10 @@ public abstract class Connection extends Conferenceable {
            builder.append(isLong ? " PROPERTY_IS_ADHOC_CONFERENCE" : " adhoc_conf");
        }

        if ((properties & PROPERTY_IS_DOWNGRADED_CONFERENCE) == PROPERTY_IS_DOWNGRADED_CONFERENCE) {
            builder.append(isLong ? " PROPERTY_IS_DOWNGRADED_CONFERENCE" : " dngrd_conf");
        }

        builder.append("]");
        return builder.toString();
    }