Prevent double run of wizard

This commit is contained in:
Milos Kozak 2023-11-29 14:30:03 +01:00
parent 6de44f9675
commit 50c035960a

View file

@ -276,7 +276,7 @@ class MainActivity : DaggerAppCompatActivityWithResult() {
})
// Setup views on 2nd and next activity start
// On 1st start app is still initializing, start() is delayed and run from EventAppInitialized
if (config.appInitialized) start()
if (config.appInitialized) setupViews()
}
private fun start() {