fix(home): 종료된 라이브 데뷔 판정을 보강한다

This commit is contained in:
2026-07-22 21:25:04 +09:00
parent 3f4d7b237f
commit 075ca88f01
4 changed files with 31 additions and 3 deletions

View File

@@ -228,8 +228,7 @@ class DefaultHomeRecommendationQueryRepository(
union all
select lr.member_id as creator_id, lr.begin_date_time as debut_at
from live_room lr
where lr.is_active = true
and lr.channel_name is not null
where lr.channel_name is not null
and lr.channel_name <> ''
and lr.begin_date_time <= :now
and (:includeAdultContents = true or lr.is_adult = false)