test #290

Merged
klaus merged 6 commits from test into main 2025-03-19 07:51:26 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit b1fb62dd65 - Show all commits

View File

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

View File

@ -65,7 +65,7 @@ class RankingService(
theme = theme
)
loopCount++
} while (contentList.size < 5)
} while (contentList.size < 5 && loopCount < 5)
return contentList
}
@ -89,7 +89,7 @@ class RankingService(
endDate = endDate
)
loopCount++
} while (seriesList.size < 5)
} while (seriesList.size < 5 && loopCount < 5)
return seriesToSeriesListItem(seriesList = seriesList, isAdult = isAdult)
}