mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-14 02:01:56 +00:00
Fix participant count in quest detail view. Fixes #1209
This commit is contained in:
parent
d58992a0f3
commit
8afe1f05f8
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ class QuestDetailFragment : BaseMainFragment() {
|
|||
questParticipantList?.addView(participantView)
|
||||
}
|
||||
}
|
||||
if (quest?.active == true || participant.participatesInQuest == true) {
|
||||
if (participant.participatesInQuest == true) {
|
||||
participantCount += 1
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue