mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 08:39:22 +01:00
Fix a few minor group call UI issues.
This commit is contained in:
@@ -49,7 +49,8 @@ public class BeginCallActionProcessorDelegate extends WebRtcActionProcessor {
|
||||
true,
|
||||
false,
|
||||
0,
|
||||
true
|
||||
true,
|
||||
0
|
||||
))
|
||||
.build();
|
||||
|
||||
@@ -91,7 +92,8 @@ public class BeginCallActionProcessorDelegate extends WebRtcActionProcessor {
|
||||
true,
|
||||
false,
|
||||
0,
|
||||
true
|
||||
true,
|
||||
0
|
||||
))
|
||||
.build();
|
||||
}
|
||||
|
||||
@@ -92,7 +92,8 @@ public class GroupActionProcessor extends DeviceAwareActionProcessor {
|
||||
Boolean.FALSE.equals(device.getAudioMuted()),
|
||||
Boolean.FALSE.equals(device.getVideoMuted()),
|
||||
device.getSpeakerTime(),
|
||||
device.getMediaKeysReceived()));
|
||||
device.getMediaKeysReceived(),
|
||||
device.getAddedTime()));
|
||||
}
|
||||
|
||||
return builder.build();
|
||||
|
||||
@@ -115,7 +115,7 @@ public class GroupPreJoinActionProcessor extends GroupActionProcessor {
|
||||
.changeCallInfoState();
|
||||
|
||||
for (Recipient recipient : callParticipants) {
|
||||
builder.putParticipant(recipient, CallParticipant.createRemote(new CallParticipantId(recipient), recipient, null, new BroadcastVideoSink(null), true, true, 0, false));
|
||||
builder.putParticipant(recipient, CallParticipant.createRemote(new CallParticipantId(recipient), recipient, null, new BroadcastVideoSink(null), true, true, 0, false, 0));
|
||||
}
|
||||
|
||||
return builder.build();
|
||||
|
||||
Reference in New Issue
Block a user