Merge pull request #5476 from vector-im/langleyd/5472_green_spinner_incorrectly_hidden

Green spinner hidden too early
This commit is contained in:
David Langley 2022-03-22 11:55:52 +00:00 committed by GitHub
commit 96c3ed8df3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -2413,6 +2413,7 @@ NSString *const AppDelegateUniversalLinkDidChangeNotification = @"AppDelegateUni
isLaunching = YES;
break;
case MXSessionStateStoreDataReady:
case MXSessionStateProcessingBackgroundSyncCache:
case MXSessionStateSyncInProgress:
// Stay in launching during the first server sync if the store is empty.
isLaunching = (mainSession.rooms.count == 0 && launchAnimationContainerView);

1
changelog.d/5472.bugfix Normal file
View file

@ -0,0 +1 @@
Green launch spinner is sometimes dismissed too early causing the incorrect onboarding screen to be displayed.