If we have an exception thrown *back to us* complain and ignore it?

This commit is contained in:
geeksville
2020-07-04 11:33:24 -07:00
parent f7ca63ed92
commit bc6fa0b1bb
2 changed files with 9 additions and 2 deletions

View File

@@ -426,7 +426,14 @@ class SafeBluetooth(private val context: Context, private val device: BluetoothD
synchronized(workQueue) {
warn("Failing ${workQueue.size} works, because ${ex.message}")
workQueue.forEach {
it.completion.resumeWithException(ex)
try {
it.completion.resumeWithException(ex)
} catch (ex: Exception) {
errormsg(
"Mystery exception, why were we informed about our own exceptions?",
ex
)
}
}
workQueue.clear()
stopCurrentWork()