Skip to content

Commit 6d1b271

Browse files
committed
Fix building issue in CI
1 parent 955e50c commit 6d1b271

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pass/Controllers/PasswordDetailTableViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ extension PasswordDetailTableViewController {
576576
handleError(error: AppError.other(message: "PasswordDoesNotExist"))
577577
return
578578
}
579-
Pass.yubiKeyDecrypt(passwordEntity: passwordEntity, requestPIN: requestYubiKeyPIN, errorHandler: handleError, cancellation: handleCancellation) { password in
579+
yubiKeyDecrypt(passwordEntity: passwordEntity, requestPIN: requestYubiKeyPIN, errorHandler: handleError, cancellation: handleCancellation) { password in
580580
self.password = password
581581
self.showPassword()
582582
}

pass/Helpers/Objective-CBridgingHeader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
#define Objective_CBridgingHeader_h
1111

1212
@import ObjectiveGit;
13-
#import <YubiKit.h>
13+
#import "YubiKit.h"
1414

1515
#endif /* Objective_CBridgingHeader_h */

0 commit comments

Comments
 (0)