소스 검색

Add passcode delegate method

- add missing `didPerformBiometricValidationRequest` delegate method from TOPasscodeViewController
- there is no default implementation. If not implemented the button won't do anything

Signed-off-by: Henrik Storch <henrik.storch@nextcloud.com>
Henrik Storch 2 년 전
부모
커밋
61d03b59e9
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      iOSClient/AppDelegate.swift

+ 4 - 0
iOSClient/AppDelegate.swift

@@ -764,6 +764,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
         return code == CCUtility.getPasscode()
     }
 
+    func didPerformBiometricValidationRequest(in passcodeViewController: TOPasscodeViewController) {
+        enableTouchFaceID()
+    }
+
     // MARK: - Privacy Protection
 
     private func showPrivacyProtectionWindow() {