diff --git a/lib/main.dart b/lib/main.dart index 3d75910..e9717b1 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -357,24 +357,24 @@ class _AppSplashScreenState extends State<_AppSplashScreen> with TrayListener { notify.listen(); try { notify.registerPushNotifications(); + if (!mounted) return; + _setPhaseText('stickers'); + final sticker = context.read(); + await sticker.listSticker(); + if (!mounted) return; + _setPhaseText('userDirectory'); + final ud = context.read(); + await ud.loadAccountCache(); + if (!mounted) return; + _setPhaseText('realm'); + final rm = context.read(); + await rm.refreshAvailableRealms(); + if (!mounted) return; + _setPhaseText('chat'); + final ct = context.read(); + await ct.refreshAvailableChannels(); + _setPhaseText('done'); } catch (_) {} - if (!mounted) return; - _setPhaseText('stickers'); - final sticker = context.read(); - await sticker.listSticker(); - if (!mounted) return; - _setPhaseText('userDirectory'); - final ud = context.read(); - await ud.loadAccountCache(); - if (!mounted) return; - _setPhaseText('realm'); - final rm = context.read(); - await rm.refreshAvailableRealms(); - if (!mounted) return; - _setPhaseText('chat'); - final ct = context.read(); - await ct.refreshAvailableChannels(); - _setPhaseText('done'); _playIntro(); } } catch (err) {