From bea6eb982f2a050d3eff20052eb5447e474f02d8 Mon Sep 17 00:00:00 2001 From: Niels Andriesse <andriesseniels@gmail.com> Date: Fri, 17 Jan 2020 15:56:24 +1100 Subject: [PATCH] Fix QR code scanning --- .../AppSettings/OWSQRCodeScanningViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/AppSettings/OWSQRCodeScanningViewController.m b/Signal/src/ViewControllers/AppSettings/OWSQRCodeScanningViewController.m index 83881dced..fd8b2a485 100644 --- a/Signal/src/ViewControllers/AppSettings/OWSQRCodeScanningViewController.m +++ b/Signal/src/ViewControllers/AppSettings/OWSQRCodeScanningViewController.m @@ -104,7 +104,7 @@ NS_ASSUME_NONNULL_BEGIN if (!self.capture) { dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ self.capture = [[ZXCapture alloc] init]; - self.capture.invert = YES; +// self.capture.invert = YES; self.capture.camera = self.capture.back; self.capture.focusMode = AVCaptureFocusModeContinuousAutoFocus; self.capture.delegate = self;