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

Commit 9c05c400 authored by Hall Liu's avatar Hall Liu Committed by Automerger Merge Worker
Browse files

Merge "Add PROPERTY_DOWNGRADED_CONFERENCE to logging" am: 2e0c2171 am: ff4a4a29

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1358163

Change-Id: Ie04c3faf2011718784b36dcc7249bbca1698f08c
parents f7a4c40e ff4a4a29
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1153,6 +1153,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();
    }