Skip to content

Commit

Permalink
Update ReviewCountObserver.kt
Browse files Browse the repository at this point in the history
Count 주기 is changed
  • Loading branch information
ozeeeno committed Dec 6, 2023
1 parent 429bbce commit 31b6eb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ReviewCountManager : ReviewCountSubject {

fun updateReviewCount(count: Int) {
myReviewCount = count
if (myReviewCount % 3 == 0 && myReviewCount > 0) {
if (myReviewCount % 10 == 0 && myReviewCount > 0) {
notifyObservers()
}
}
Expand Down

0 comments on commit 31b6eb5

Please sign in to comment.