diff --git a/app/build.gradle b/app/build.gradle index 8568e647..3b067656 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -35,8 +35,8 @@ android { applicationId "kr.co.vividnext.sodalive" minSdk 23 targetSdk 34 - versionCode 171 - versionName "1.37.2" + versionCode 172 + versionName "1.38.0" } buildTypes { diff --git a/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/creator_community/all/CreatorCommunityAllAdapter.kt b/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/creator_community/all/CreatorCommunityAllAdapter.kt index e1eb26c3..3b2e25d3 100644 --- a/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/creator_community/all/CreatorCommunityAllAdapter.kt +++ b/app/src/main/java/kr/co/vividnext/sodalive/explorer/profile/creator_community/all/CreatorCommunityAllAdapter.kt @@ -134,7 +134,9 @@ class CreatorCommunityAllAdapter( item.commentCount, item.isCommentAvailable, comment = item.firstComment, - existOrdered = item.existOrdered + existOrdered = item.price > 0 && + item.existOrdered && + item.creatorId != SharedPreferenceManager.userId ) }