ios: choose notifications mode during onboarding and after DB migration (#773)

This commit is contained in:
Evgeny Poberezkin
2022-07-03 19:53:07 +01:00
committed by GitHub
parent c619092464
commit 2c121b5731
12 changed files with 175 additions and 45 deletions

View File

@@ -543,8 +543,10 @@ func startChat() throws {
registerToken(token: token)
}
withAnimation {
m.onboardingStage = m.chats.isEmpty
? .step3_MakeConnection
m.onboardingStage = m.onboardingStage == .step2_CreateProfile
? .step3_SetNotificationsMode
: m.chats.isEmpty
? .step4_MakeConnection
: .onboardingComplete
}
}