From 9526104a4a7c9d36416c4518f630ca9d62d06dfa Mon Sep 17 00:00:00 2001 From: lunaticbum Date: Wed, 1 Apr 2026 11:12:06 +0900 Subject: [PATCH] .. --- .../main/kotlin/bums/lunatic/launcher/workers/TorrentManager.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ->