From d49f4daa251126d1491c4b99768180cda94f26b1 Mon Sep 17 00:00:00 2001 From: kunfei Date: Mon, 29 Jul 2019 17:42:06 +0800 Subject: [PATCH] up --- .../legado/app/ui/sourcedebug/SourceDebugActivity.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/io/legado/app/ui/sourcedebug/SourceDebugActivity.kt b/app/src/main/java/io/legado/app/ui/sourcedebug/SourceDebugActivity.kt index b2c5aa269..4601eb202 100644 --- a/app/src/main/java/io/legado/app/ui/sourcedebug/SourceDebugActivity.kt +++ b/app/src/main/java/io/legado/app/ui/sourcedebug/SourceDebugActivity.kt @@ -87,10 +87,12 @@ class SourceDebugActivity : BaseActivity(), SourceDebug.Callba } override fun printLog(state: Int, msg: String) { - adapter.logList.add(msg) - adapter.notifyItemChanged(adapter.logList.size - 1) - if (state == -1 || state == 1000) { - rotate_loading.visibility = View.GONE + launch { + adapter.logList.add(msg) + adapter.notifyItemChanged(adapter.logList.size - 1) + if (state == -1 || state == 1000) { + rotate_loading.visibility = View.GONE + } } }