pull/32/head
kunfei 5 years ago
parent 27bb0ea20a
commit 3b18762616
  1. 5
      app/src/main/java/io/legado/app/ui/sourcedebug/SourceDebugModel.kt

@ -8,6 +8,7 @@ import io.legado.app.help.EventMessage
import io.legado.app.model.WebBook
import io.legado.app.model.webbook.SourceDebug
import io.legado.app.utils.postEvent
import kotlinx.coroutines.launch
class SourceDebugModel(application: Application) : BaseViewModel(application), SourceDebug.Callback {
@ -31,7 +32,9 @@ class SourceDebugModel(application: Application) : BaseViewModel(application), S
}
override fun printLog(state: Int, msg: String) {
postEvent(Bus.SOURCE_DEBUG_LOG, EventMessage.obtain(state, msg))
launch {
postEvent(Bus.SOURCE_DEBUG_LOG, EventMessage.obtain(state, msg))
}
}
override fun onCleared() {

Loading…
Cancel
Save