diff --git a/app/src/main/java/io/legado/app/model/Debug.kt b/app/src/main/java/io/legado/app/model/Debug.kt index e30373143..12e99d95b 100644 --- a/app/src/main/java/io/legado/app/model/Debug.kt +++ b/app/src/main/java/io/legado/app/model/Debug.kt @@ -35,8 +35,8 @@ object Debug { showTime: Boolean = true, state: Int = 1 ) { - if (AppConfig.checkSourceMessage) { - if (isChecking && sourceUrl != null && (msg ?: "").length < 30) { + if (AppConfig.checkSourceMessage && isChecking) { + if (sourceUrl != null && (msg ?: "").length < 30) { var printMsg = msg ?: "" if (isHtml) { printMsg = HtmlFormatter.format(msg)