@@ -44,6 +44,9 @@
XLFormRowDescriptor *row;
BOOL isE2EEEnabled = [[NCManageDatabase sharedInstance] getCapabilitiesServerBoolWithAccount:appDelegate.activeAccount elements:NCElementsJSON.shared.capabilitiesE2EEEnabled exists:false];
+ // DISABLE E2EE
+ isE2EEEnabled = NO;
if (isE2EEEnabled == NO) {
// Section SERVICE NOT AVAILABLE -------------------------------------------------
@@ -412,6 +412,10 @@
+ (BOOL)isEndToEndEnabled:(NSString *)account
{
+ return false;
+
BOOL isE2EEEnabled = [[NCManageDatabase sharedInstance] getCapabilitiesServerBoolWithAccount:account elements:NCElementsJSON.shared.capabilitiesE2EEEnabled exists:false];
NSString *publicKey = [self getEndToEndPublicKey:account];