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
)