fix(profile): non-null 응답 호환을 위해 누락된 SNS 필드를 복구한다
This commit is contained in:
@@ -248,6 +248,8 @@ class ExplorerService(
|
||||
fancimmUrl = creatorAccount.fancimmUrl,
|
||||
xUrl = creatorAccount.xUrl,
|
||||
youtubeUrl = creatorAccount.youtubeUrl,
|
||||
websiteUrl = creatorAccount.websiteUrl,
|
||||
blogUrl = creatorAccount.blogUrl,
|
||||
kakaoOpenChatUrl = creatorAccount.websiteUrl
|
||||
)
|
||||
}
|
||||
|
||||
@@ -10,5 +10,7 @@ data class GetCreatorDetailResponse(
|
||||
val fancimmUrl: String,
|
||||
val xUrl: String,
|
||||
val youtubeUrl: String,
|
||||
val websiteUrl: String,
|
||||
val blogUrl: String,
|
||||
val kakaoOpenChatUrl: String
|
||||
)
|
||||
|
||||
@@ -9,6 +9,8 @@ data class GetLiveRoomUserProfileResponse(
|
||||
val fancimmUrl: String,
|
||||
val xUrl: String,
|
||||
val youtubeUrl: String,
|
||||
val websiteUrl: String,
|
||||
val blogUrl: String,
|
||||
val kakaoOpenChatUrl: String,
|
||||
val introduce: String,
|
||||
val tags: String,
|
||||
|
||||
@@ -1123,6 +1123,8 @@ class LiveRoomService(
|
||||
fancimmUrl = user.fancimmUrl,
|
||||
xUrl = user.xUrl,
|
||||
youtubeUrl = user.youtubeUrl,
|
||||
websiteUrl = user.websiteUrl,
|
||||
blogUrl = user.blogUrl,
|
||||
kakaoOpenChatUrl = user.websiteUrl,
|
||||
introduce = user.introduce,
|
||||
tags = user.tags
|
||||
|
||||
Reference in New Issue
Block a user