From 6d1b271af6bcca94d9ba2d39da744fe32090988d Mon Sep 17 00:00:00 2001 From: Mingshen Sun Date: Sun, 9 Jan 2022 22:12:41 -0800 Subject: [PATCH] Fix building issue in CI --- pass/Controllers/PasswordDetailTableViewController.swift | 2 +- pass/Helpers/Objective-CBridgingHeader.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pass/Controllers/PasswordDetailTableViewController.swift b/pass/Controllers/PasswordDetailTableViewController.swift index cd1e4d4..e39b5c6 100644 --- a/pass/Controllers/PasswordDetailTableViewController.swift +++ b/pass/Controllers/PasswordDetailTableViewController.swift @@ -576,7 +576,7 @@ extension PasswordDetailTableViewController { handleError(error: AppError.other(message: "PasswordDoesNotExist")) return } - Pass.yubiKeyDecrypt(passwordEntity: passwordEntity, requestPIN: requestYubiKeyPIN, errorHandler: handleError, cancellation: handleCancellation) { password in + yubiKeyDecrypt(passwordEntity: passwordEntity, requestPIN: requestYubiKeyPIN, errorHandler: handleError, cancellation: handleCancellation) { password in self.password = password self.showPassword() } diff --git a/pass/Helpers/Objective-CBridgingHeader.h b/pass/Helpers/Objective-CBridgingHeader.h index 3a71b73..5a7c3e4 100644 --- a/pass/Helpers/Objective-CBridgingHeader.h +++ b/pass/Helpers/Objective-CBridgingHeader.h @@ -10,6 +10,6 @@ #define Objective_CBridgingHeader_h @import ObjectiveGit; -#import +#import "YubiKit.h" #endif /* Objective_CBridgingHeader_h */