pull/2309/head 3.22.091920
kunfei 2 years ago
parent dee58913dd
commit 84ccbe22b1
  1. 1
      app/src/main/assets/updateLog.md
  2. 3
      app/src/main/java/io/legado/app/service/CheckSourceService.kt

@ -13,6 +13,7 @@
**2022/09/19**
* 发现为空时不校验
* 订阅添加刷新分类功能,菜单中
* 修复webView因为不支持新夜间模式导致的崩溃
* 修复阅读背景分主题设置bug by 821938089

@ -72,6 +72,7 @@ class CheckSourceService : BaseService() {
IntentAction.start -> intent.getStringArrayListExtra("selectIds")?.let {
check(it)
}
IntentAction.resume -> upNotification()
else -> stopSelf()
}
@ -154,7 +155,7 @@ class CheckSourceService : BaseService() {
}
}
//校验发现书籍
if (CheckSource.checkDiscovery) {
if (CheckSource.checkDiscovery && !source.exploreUrl.isNullOrBlank()) {
val exs = source.exploreKinds()
var url: String? = null
for (ex in exs) {

Loading…
Cancel
Save