Merge pull request #7272 from vector-im/andy/migrate_crypto

Add labs settings for Crypto SDK
This commit is contained in:
Anderas
2023-01-23 09:22:11 +00:00
committed by GitHub
12 changed files with 123 additions and 19 deletions
+3 -3
View File
@@ -2398,14 +2398,14 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
MXLogDebug(@"[AppDelegate] showLaunchAnimation");
LaunchLoadingView *launchLoadingView;
if (MXSDKOptions.sharedInstance.enableSyncProgress)
if (MXSDKOptions.sharedInstance.enableStartupProgress)
{
MXSession *mainSession = self.mxSessions.firstObject;
launchLoadingView = [LaunchLoadingView instantiateWithSyncProgress:mainSession.syncProgress];
launchLoadingView = [LaunchLoadingView instantiateWithStartupProgress:mainSession.startupProgress];
}
else
{
launchLoadingView = [LaunchLoadingView instantiateWithSyncProgress:nil];
launchLoadingView = [LaunchLoadingView instantiateWithStartupProgress:nil];
}
launchLoadingView.frame = window.bounds;