Fix initial state for internet check

This commit is contained in:
sim 2023-08-31 01:52:43 +02:00
parent 3cb7d9d531
commit 5484ff6d59

View File

@ -6,7 +6,7 @@ import java.util.concurrent.atomic.AtomicInteger
object AppCompanion {
val booting = AtomicBoolean(false)
val hasInternet = AtomicBoolean(false)
val hasInternet = AtomicBoolean(true)
val started = AtomicBoolean(false)
val pinged = AtomicBoolean(false)
val bufferedResponseChecked = AtomicBoolean(false)