tweak toast in UserAssetActivity.kt

add missing space
This commit is contained in:
LiAlH4
2022-08-12 08:06:06 +08:00
committed by GitHub
parent 56d987713e
commit 129c1db995

View File

@@ -141,10 +141,10 @@ class UserAssetActivity : BaseActivity() {
val result = downloadGeo(it, 60000, httpPort)
launch(Dispatchers.Main) {
if (result) {
toast(getString(R.string.toast_success) + it)
toast(getString(R.string.toast_success) + "" + it)
binding.recyclerView.adapter?.notifyDataSetChanged()
} else {
toast(getString(R.string.toast_failure) + it)
toast(getString(R.string.toast_failure) + "" + it)
}
}
}