fix: Connectivity toast message was causing issues.
All checks were successful
PR / translations (pull_request) Successful in 1m47s
PR / PR (pull_request) Successful in 2m10s
PR / build (pull_request) Successful in 17m42s
PR test / integrationTests (pull_request) Successful in 43m23s
Master / build (push) Successful in 10m45s
Realease / build (push) Successful in 4m37s
Realease / createTagAndChangelog (push) Successful in 44s
Realease / release (push) Successful in 7m4s

This commit is contained in:
Amine Bouabdallaoui 2025-04-08 20:31:29 +02:00
parent cf6ef51edf
commit a602f7adf2

View File

@ -82,13 +82,14 @@ class MyApp :
} else { } else {
R.string.network_connectivity_lost R.string.network_connectivity_lost
} }
launch(Dispatchers.Main) {
Toast Toast
.makeText( .makeText(
applicationContext, applicationContext,
toastMessage, toastMessage,
Toast.LENGTH_SHORT, Toast.LENGTH_SHORT,
).show() ).show()
}
} }
} }
} }