Fix participant count in quest detail view. Fixes #1209

This commit is contained in:
Phillip Thelen 2019-08-07 13:10:40 +02:00
parent d58992a0f3
commit 8afe1f05f8

View file

@ -196,7 +196,7 @@ class QuestDetailFragment : BaseMainFragment() {
questParticipantList?.addView(participantView)
}
}
if (quest?.active == true || participant.participatesInQuest == true) {
if (participant.participatesInQuest == true) {
participantCount += 1
}
}