Removed custom OTP entry category since KeePassKit now has all we need

This commit is contained in:
Michael Starke
2020-12-12 14:00:33 +01:00
parent bb73628484
commit fa85da3f82
6 changed files with 1 additions and 56 deletions

View File

@@ -8,8 +8,6 @@
#import "MPTOTPViewController.h"
#import "KPKEntry+OTP.h"
#import <KeePassKit/KeePassKit.h>
@interface MPTOTPViewController ()
@@ -45,7 +43,7 @@
- (void)_updateDisplay {
KPKEntry *entry = (KPKEntry *)self.representedObject;
BOOL showTOTP = entry.hasTOTP;
BOOL showTOTP = entry.hasTimeOTP;
self.view.hidden = !showTOTP;
if(showTOTP) {
self.remainingTimeProgressIndicator.indeterminate = YES;