mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 02:15:35 +03:00
Removed unnecessary semicolon
This commit is contained in:
parent
b6454b70a6
commit
95eb6926d4
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ class WebRtcPeerConnectionManager @Inject constructor(
|
|||
// render local video in pip view
|
||||
localSurfaceRenderer.forEach {
|
||||
it.get()?.let { pipSurface ->
|
||||
pipSurface.setMirror(this.cameraInUse?.type == CameraType.FRONT);
|
||||
pipSurface.setMirror(this.cameraInUse?.type == CameraType.FRONT)
|
||||
// no need to check if already added, addSink is checking that
|
||||
currentCall?.localVideoTrack?.addSink(pipSurface)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue