diff --git a/app/src/main/kotlin/bums/lunatic/launcher/workers/TorrentManager.kt b/app/src/main/kotlin/bums/lunatic/launcher/workers/TorrentManager.kt index c0d37661..78376008 100644 --- a/app/src/main/kotlin/bums/lunatic/launcher/workers/TorrentManager.kt +++ b/app/src/main/kotlin/bums/lunatic/launcher/workers/TorrentManager.kt @@ -165,7 +165,7 @@ class TorrentService : Service() { // 2. 파일 다운로드: 계산된 점수(finalScore)가 낮은 순으로 정렬 if (isCharging) { - val maxSlots = if (isWifiConnected) 7 else 2 + val maxSlots = if (isWifiConnected) 5 else 1 val sortedByPriority = torrentsWithMetadata.sortedBy { it.second } sortedByPriority.forEachIndexed { index, pair ->