test #214
|
@ -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
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue