Removed unnecessary semicolon

This commit is contained in:
ginnyTheCat 2020-09-14 21:48:26 +02:00 committed by GitHub
parent b6454b70a6
commit 95eb6926d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}