From b73fbf216013f256aae05ab80bc2c8636f029879 Mon Sep 17 00:00:00 2001 From: lunaticbum Date: Tue, 24 Feb 2026 19:15:59 +0900 Subject: [PATCH] ... --- .../main/kotlin/bums/lunatic/launcher/LauncherActivity.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/kotlin/bums/lunatic/launcher/LauncherActivity.kt b/app/src/main/kotlin/bums/lunatic/launcher/LauncherActivity.kt index 01c8ce43..8ab5134b 100644 --- a/app/src/main/kotlin/bums/lunatic/launcher/LauncherActivity.kt +++ b/app/src/main/kotlin/bums/lunatic/launcher/LauncherActivity.kt @@ -381,12 +381,12 @@ open class LauncherActivity : CommonActivity() { // Blog.LOGE("failed to initialize youtubedl-android", e) // } - Intent(this, ForeGroundService::class.java).apply { - startForegroundService(intent) + Intent(this, ForeGroundService::class.java).let { + startForegroundService(it) } - Intent(this, TorrentService::class.java).apply { - startForegroundService(intent) + Intent(this, TorrentService::class.java).let { + startForegroundService(it) }