test #214
|
@ -320,8 +320,16 @@ class ExplorerService(
|
||||||
userId = it.userId,
|
userId = it.userId,
|
||||||
profileImage = it.profileImage,
|
profileImage = it.profileImage,
|
||||||
nickname = it.nickname,
|
nickname = it.nickname,
|
||||||
isFollow = creatorFollowing?.isFollow,
|
isFollow = creatorFollowing?.isFollow ?: if (it.role == MemberRole.CREATOR) {
|
||||||
isNotify = creatorFollowing?.isNotify
|
false
|
||||||
|
} else {
|
||||||
|
null
|
||||||
|
},
|
||||||
|
isNotify = creatorFollowing?.isNotify ?: if (it.role == MemberRole.CREATOR) {
|
||||||
|
false
|
||||||
|
} else {
|
||||||
|
null
|
||||||
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue