Use only non empty option to create a poll

This commit is contained in:
Benoit Marty 2021-12-13 22:17:43 +01:00
parent 5ea7f3cbca
commit 28588eb10c

View file

@ -81,7 +81,7 @@ class CreatePollViewModel @AssistedInject constructor(
_viewEvents.post(CreatePollViewEvents.NotEnoughOptionsError(requiredOptionsCount = MIN_OPTIONS_COUNT))
}
else -> {
room.sendPoll(state.question, state.options)
room.sendPoll(state.question, nonEmptyOptions)
_viewEvents.post(CreatePollViewEvents.Success)
}
}