This commit is contained in:
kunfei
2022-09-19 20:41:36 +08:00
parent dee58913dd
commit 84ccbe22b1
2 changed files with 3 additions and 1 deletions

View File

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

View File

@@ -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) {