From 781bb5bd1853ae95dea548364a7e3a7e0710ef1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 24 Mar 2022 16:28:04 +0100 Subject: [PATCH] feat(ios) enable Dropbox recording --- ios/app/src/AppDelegate.m | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ios/app/src/AppDelegate.m b/ios/app/src/AppDelegate.m index acfee669c3..3e39ec494c 100644 --- a/ios/app/src/AppDelegate.m +++ b/ios/app/src/AppDelegate.m @@ -37,13 +37,8 @@ [builder setFeatureFlag:@"welcomepage.enabled" withBoolean:YES]; [builder setFeatureFlag:@"resolution" withValue:@(360)]; [builder setFeatureFlag:@"ios.screensharing.enabled" withBoolean:YES]; - builder.serverURL = [NSURL URLWithString:@"https://meet.jit.si"]; - - // Apple rejected our app because they claim requiring a - // Dropbox account for recording is not acceptable. -#if DEBUG [builder setFeatureFlag:@"ios.recording.enabled" withBoolean:YES]; -#endif + builder.serverURL = [NSURL URLWithString:@"https://meet.jit.si"]; }]; [jitsiMeet application:application didFinishLaunchingWithOptions:launchOptions];