This commit is contained in:
Horis
2025-04-02 12:36:11 +08:00
parent 2f9f5e6ebf
commit 5f81cbbfeb
5 changed files with 68 additions and 23 deletions
+8
View File
@@ -216,4 +216,12 @@ class App : Application() {
}
}
companion object {
init {
if (BuildConfig.DEBUG) {
System.setProperty("kotlinx.coroutines.debug", "on")
}
}
}
}
@@ -206,7 +206,7 @@ object ReadManga : CoroutineScope by MainScope() {
mCallback?.loadFail(errorMsg)
return
}
if (content.isEmpty()) {
if (content.isEmpty() && !chapter.isVolume) {
mCallback?.loadFail("正文内容为空")
return
}