diff --git a/app/src/main/java/org/thoughtcrime/securesms/components/webrtc/CallParticipantView.java b/app/src/main/java/org/thoughtcrime/securesms/components/webrtc/CallParticipantView.java index 55b4e04343..b650e586c6 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/components/webrtc/CallParticipantView.java +++ b/app/src/main/java/org/thoughtcrime/securesms/components/webrtc/CallParticipantView.java @@ -164,7 +164,8 @@ public class CallParticipantView extends ConstraintLayout { } else { infoOverlay.setVisibility(View.GONE); - boolean hasContentToRender = (participant.isVideoEnabled() || participant.isScreenSharing()) && participant.isForwardingVideo(); + //TODO: [calling] SFU instability causes the forwarding video flag to alternate quickly, should restore after calling server update + boolean hasContentToRender = (participant.isVideoEnabled() || participant.isScreenSharing()); // && participant.isForwardingVideo(); rendererFrame.setVisibility(hasContentToRender ? View.VISIBLE : View.INVISIBLE); renderer.setVisibility(hasContentToRender ? View.VISIBLE : View.INVISIBLE);