pull/1496/head
gedoor 3 years ago
parent 1a978516b8
commit 5a2234258c
  1. 13
      app/src/main/java/io/legado/app/service/WebService.kt

@ -128,13 +128,16 @@ class WebService : BaseService() {
private fun upTile(active: Boolean) { private fun upTile(active: Boolean) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
startService<WebTileService> { kotlin.runCatching {
action = if (active) { startService<WebTileService> {
IntentAction.start action = if (active) {
} else { IntentAction.start
IntentAction.stop } else {
IntentAction.stop
}
} }
} }
} }
} }
} }

Loading…
Cancel
Save