- fix issue where question is displayed as multiple choice when it's supposed to be multi-select

This commit is contained in:
Richard Alam 2013-09-13 18:24:14 +00:00
parent 1db314c60a
commit 9dcdedcf55

View File

@ -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)