Compare commits

..

No commits in common. "c6853289ad33fcbba4d7bc4f5c8138932421a30d" and "2497bb69bc8713f9a9ff9fdfb7c499820bb324c9" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -59,10 +59,10 @@ class ContentSeriesContentQueryRepositoryImpl(
.and(audioContent.isActive.isTrue)
.and(audioContent.duration.isNotNull)
var orderBy = audioContent.releaseDate.desc()
var orderBy = seriesContent.createdAt.desc()
if (sortType == SeriesSortType.OLDEST) {
orderBy = audioContent.releaseDate.asc()
orderBy = seriesContent.createdAt.asc()
}
if (!isAdult) {

View File

@ -408,7 +408,7 @@ class LiveRoomService(
?: throw SodaException("이미 종료된 방입니다")
if (room.isAdult && member.auth == null) {
throw SodaException("본인인증이 필요한 서비스 입니다.")
throw SodaException("본인인증이 필요한 서비스 입니다.\n소다라이브 마이페이지에서 본인인증 후 다시 이용해 주세요.")
}
val beginDateTime = room.beginDateTime