Skip to content

Commit

Permalink
修复回赞天数自定义不生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
teble committed Apr 14, 2024
1 parent 73b95d9 commit 9a8c635
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ object FuncTaskReqUtil : ITaskReqUtil {
val maxDays = paramMap["maxDays"]!!.toInt()
LogUtil.d("maxPage: $maxPage, maxDays: $maxDays")
manager = favoriteManager
val res = favoriteManager.getAllVoter(maxPage)
val res = favoriteManager.getAllVoter(maxPage, maxDays)
LogUtil.d("满足要求点赞列表人数: ${res.size}")
var favoriteCnt = 0
res.forEach {
Expand Down

0 comments on commit 9a8c635

Please sign in to comment.