This commit is contained in:
lunaticbum 2026-02-24 19:15:59 +09:00
parent 33a4674a82
commit b73fbf2160

View File

@ -381,12 +381,12 @@ open class LauncherActivity : CommonActivity() {
// Blog.LOGE("failed to initialize youtubedl-android", e) // Blog.LOGE("failed to initialize youtubedl-android", e)
// } // }
Intent(this, ForeGroundService::class.java).apply { Intent(this, ForeGroundService::class.java).let {
startForegroundService(intent) startForegroundService(it)
} }
Intent(this, TorrentService::class.java).apply { Intent(this, TorrentService::class.java).let {
startForegroundService(intent) startForegroundService(it)
} }