콘텐츠 메인 홈 - 인기 시리즈, 인기 단편

콘텐츠 메인 단편 - 랭킹
- 기존 조건에 계산은 최대 5번까지만 하도록 수정
This commit is contained in:
2025-03-19 16:45:31 +09:00
parent b7b166c362
commit b1fb62dd65
2 changed files with 3 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ class AudioContentMainTabContentService(
sortType = sortType
)
loopCount++
} while (contentList.size < 5)
} while (contentList.size < 5 && loopCount < 5)
return contentList
}