Do not display full state events
This commit is contained in:
parent
50338b4548
commit
08926bc996
2 changed files with 4 additions and 1 deletions
|
@ -357,6 +357,9 @@ public class ChatEventsAdapter extends BaseAdapter implements ChatMessageListene
|
||||||
|
|
||||||
holder.bubbleLayout.setLayoutParams(layoutParams);
|
holder.bubbleLayout.setLayoutParams(layoutParams);
|
||||||
} else { // Event is not chat message
|
} else { // Event is not chat message
|
||||||
|
if (event.isFullState()) { // Do not display full state events
|
||||||
|
return view;
|
||||||
|
}
|
||||||
holder.eventLayout.setVisibility(View.VISIBLE);
|
holder.eventLayout.setVisibility(View.VISIBLE);
|
||||||
|
|
||||||
Log.d("Conference event type is " + event.getType().toString());
|
Log.d("Conference event type is " + event.getType().toString());
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 8e05e6a21f0770e4e00fbf316568645bebaf41c0
|
Subproject commit a4a221dc0602d8ce170dbd3ffac75b72395a41fc
|
Loading…
Reference in a new issue