Fix / crash not called on UI Thread

This commit is contained in:
Valere 2019-07-03 19:36:25 +02:00
parent 2a2431e490
commit 2eee25bbc1
1 changed files with 7 additions and 3 deletions

View File

@ -45,7 +45,9 @@ object PopupAlertManager {
synchronized(alertFiFo) {
alertFiFo.add(alert)
}
displayNextIfPossible()
weakCurrentActivity?.get()?.runOnUiThread {
displayNextIfPossible()
}
}

fun cancelAlert(uid: String) {
@ -62,8 +64,10 @@ object PopupAlertManager {

//it could also be the current one
if (currentAlerter?.uid == uid) {
Alerter.hide()
currentIsDismissed()
weakCurrentActivity?.get()?.runOnUiThread {
Alerter.hide()
currentIsDismissed()
}
}
}