Skip to content

Commit

Permalink
Fix test compilation
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
SystemKeeper committed Sep 25, 2023
1 parent 314c794 commit d0d369c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NextcloudTalk/NCCameraController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ class NCCameraController: NSObject, AVCaptureVideoDataOutputSampleBufferDelegate
self.session?.sessionPreset = .inputPriority

if self.usingFrontCamera {
self.session?.addInput(getFrontCameraInput())
self.session?.addInput(self.getFrontCameraInput())
} else {
self.session?.addInput(getBackCameraInput())
self.session?.addInput(self.getBackCameraInput())
}

let output = AVCaptureVideoDataOutput()
Expand Down

0 comments on commit d0d369c

Please sign in to comment.