1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 23:21:34 +02:00

Show error classname if message does not exist

This commit is contained in:
Allan Wang 2021-01-11 21:38:33 -08:00
parent 520b1b98f5
commit f30e67588c
No known key found for this signature in database
GPG Key ID: 69D90B885D405BDB

View File

@ -362,7 +362,7 @@ internal enum class FabStates(
?: return
activity.materialDialog {
title(R.string.kau_error)
message(text = err.message)
message(text = err.message ?: err.javaClass.name)
}
}
},