fix(banner): 캐릭터 검색
- 검색 결과에 imageHost와 imagePath 사이에 / 추가
This commit is contained in:
parent
b819df9656
commit
a6a01aaa37
|
@ -22,7 +22,7 @@ data class ChatCharacterSearchResponse(
|
||||||
name = character.name,
|
name = character.name,
|
||||||
description = character.description,
|
description = character.description,
|
||||||
mbti = character.mbti,
|
mbti = character.mbti,
|
||||||
imagePath = character.imagePath?.let { "$imageHost$it" },
|
imagePath = character.imagePath?.let { "$imageHost/$it" },
|
||||||
tags = tags
|
tags = tags
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue