fix: 커뮤니티 댓글

- 무료 커뮤니티 글, 내 커뮤니티 글 에서 비밀댓글 체크박스가 보이지 않도록 수정
This commit is contained in:
2025-06-13 21:06:03 +09:00
parent c527f55721
commit 898afc78ef
2 changed files with 5 additions and 3 deletions

View File

@@ -35,8 +35,8 @@ android {
applicationId "kr.co.vividnext.sodalive" applicationId "kr.co.vividnext.sodalive"
minSdk 23 minSdk 23
targetSdk 34 targetSdk 34
versionCode 171 versionCode 172
versionName "1.37.2" versionName "1.38.0"
} }
buildTypes { buildTypes {

View File

@@ -134,7 +134,9 @@ class CreatorCommunityAllAdapter(
item.commentCount, item.commentCount,
item.isCommentAvailable, item.isCommentAvailable,
comment = item.firstComment, comment = item.firstComment,
existOrdered = item.existOrdered existOrdered = item.price > 0 &&
item.existOrdered &&
item.creatorId != SharedPreferenceManager.userId
) )
} }