From 84b64d328328c4114b72dd197e04ea3db6d91b7a Mon Sep 17 00:00:00 2001 From: klaus Date: Tue, 24 Sep 2024 19:39:32 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=ED=94=84=20=EC=B0=B8?= =?UTF-8?q?=EC=97=AC=EC=9E=90=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20-=20?= =?UTF-8?q?=EC=8A=A4=ED=94=BC=EC=BB=A4=20=ED=91=9C=EC=8B=9C=20=EC=B5=9C?= =?UTF-8?q?=EB=8C=80=205=EB=AA=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/live/room/profile/LiveRoomProfileItem.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/kr/co/vividnext/sodalive/live/room/profile/LiveRoomProfileItem.kt b/app/src/main/java/kr/co/vividnext/sodalive/live/room/profile/LiveRoomProfileItem.kt index 9916c80..649a6e7 100644 --- a/app/src/main/java/kr/co/vividnext/sodalive/live/room/profile/LiveRoomProfileItem.kt +++ b/app/src/main/java/kr/co/vividnext/sodalive/live/room/profile/LiveRoomProfileItem.kt @@ -60,8 +60,8 @@ data class LiveRoomProfileItemSpeakerTitle( val itemBinding = binding as ItemLiveRoomProfileHeaderBinding itemBinding.tvTitle.text = title itemBinding.tvSpeakerCount.text = "$speakerCount" - itemBinding.tvSpeakerTotalCount.text = if (totalUserCount > 4) { - "/4" + itemBinding.tvSpeakerTotalCount.text = if (totalUserCount > 5) { + "/5" } else { "/${totalUserCount - 1}" }