fix(home): 팔로잉 크리에이터를 오래된 팔로우순으로 조회한다
This commit is contained in:
@@ -52,7 +52,7 @@ class DefaultHomeFollowingQueryRepository(
|
||||
creator.role.eq(MemberRole.CREATOR),
|
||||
notBlockedCreatorCondition(memberId, creator.id)
|
||||
)
|
||||
.orderBy(creatorFollowing.createdAt.desc(), creatorFollowing.id.desc())
|
||||
.orderBy(creatorFollowing.createdAt.asc(), creatorFollowing.id.desc())
|
||||
.limit(limit.toLong())
|
||||
.fetch()
|
||||
.map { row ->
|
||||
|
||||
Reference in New Issue
Block a user