- fix issue where question is displayed as multiple choice when it's supposed to be multi-select
This commit is contained in:
parent
1db314c60a
commit
9dcdedcf55
@ -71,7 +71,7 @@ class PollMessageConverter {
|
||||
j += 1
|
||||
}
|
||||
|
||||
val questionType = if (qType.equalsIgnoreCase(QuestionType.MULTI_CHOICE.toString())) true else false
|
||||
val questionType = if (! qType.equalsIgnoreCase(QuestionType.MULTI_CHOICE.toString())) true else false
|
||||
|
||||
cvoArray += new QuestionVO(i.toString, questionType, questionText, rvoArray.toArray)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user