시리즈 콘텐츠 추가

- 시리즈 콘텐츠를 시리즈에 추가할 때 set 타입으로 변환하여 중복 제거
This commit is contained in:
Klaus 2024-04-24 01:35:23 +09:00
parent 0acf98aef3
commit 0c325185fb
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class CreatorAdminContentSeriesService(
}
if (seriesContentList.size > 0) {
series.contentList.addAll(seriesContentList)
series.contentList.addAll(seriesContentList.toSet())
} else {
throw SodaException("추가된 콘텐츠가 없습니다.")
}