test #214

Merged
klaus merged 13 commits from test into main 2024-09-23 06:24:12 +00:00
1 changed files with 10 additions and 2 deletions
Showing only changes of commit 2a70a7824f - Show all commits

View File

@ -320,8 +320,16 @@ class ExplorerService(
userId = it.userId,
profileImage = it.profileImage,
nickname = it.nickname,
isFollow = creatorFollowing?.isFollow,
isNotify = creatorFollowing?.isNotify
isFollow = creatorFollowing?.isFollow ?: if (it.role == MemberRole.CREATOR) {
false
} else {
null
},
isNotify = creatorFollowing?.isNotify ?: if (it.role == MemberRole.CREATOR) {
false
} else {
null
}
)
}