fix(profile): non-null 응답 호환을 위해 누락된 SNS 필드를 복구한다

This commit is contained in:
2026-02-24 19:30:09 +09:00
parent 772883993b
commit 02cb4aa29c
5 changed files with 19 additions and 0 deletions

View File

@@ -248,6 +248,8 @@ class ExplorerService(
fancimmUrl = creatorAccount.fancimmUrl,
xUrl = creatorAccount.xUrl,
youtubeUrl = creatorAccount.youtubeUrl,
websiteUrl = creatorAccount.websiteUrl,
blogUrl = creatorAccount.blogUrl,
kakaoOpenChatUrl = creatorAccount.websiteUrl
)
}

View File

@@ -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
)

View File

@@ -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,

View File

@@ -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