This commit is contained in:
LiAlH4
2022-08-12 08:07:46 +08:00
committed by GitHub
parent 129c1db995
commit 18e0dc4546

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)
}
}
}