From e3bacfb8cbad49a1cb6f1218f1dd1665fa79ea2e Mon Sep 17 00:00:00 2001 From: Klaus Date: Mon, 8 Jul 2024 12:09:02 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9C=A0=EB=A3=8C=EB=9D=BC=EC=9D=B4=EB=B8=8C?= =?UTF-8?q?=20=EC=BA=94=20=EC=A7=80=EB=B6=88=20=EC=97=AC=EB=B6=80=20?= =?UTF-8?q?=ED=8C=90=EB=8B=A8=EB=A1=9C=EC=A7=81=20-=20=ED=99=98=EB=B6=88?= =?UTF-8?q?=EB=90=9C=20=EA=B1=B4=EC=9D=80=20=EC=A7=80=EB=B6=88=EB=90=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EC=9D=80=20=EA=B1=B8=EB=A1=9C=20=ED=8C=90?= =?UTF-8?q?=EB=8B=A8=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt index 418d9fb..61863a0 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/can/CanRepository.kt @@ -109,6 +109,7 @@ class CanQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : CanQue member.id.eq(memberId) .and(liveRoom.id.eq(roomId)) .and(useCan.canUsage.eq(CanUsage.LIVE)) + .and(useCan.isRefund.isFalse) ) .orderBy(useCan.id.desc()) .fetchFirst()