Use only non empty option to create a poll
This commit is contained in:
parent
5ea7f3cbca
commit
28588eb10c
@ -81,7 +81,7 @@ class CreatePollViewModel @AssistedInject constructor(
|
|||||||
_viewEvents.post(CreatePollViewEvents.NotEnoughOptionsError(requiredOptionsCount = MIN_OPTIONS_COUNT))
|
_viewEvents.post(CreatePollViewEvents.NotEnoughOptionsError(requiredOptionsCount = MIN_OPTIONS_COUNT))
|
||||||
}
|
}
|
||||||
else -> {
|
else -> {
|
||||||
room.sendPoll(state.question, state.options)
|
room.sendPoll(state.question, nonEmptyOptions)
|
||||||
_viewEvents.post(CreatePollViewEvents.Success)
|
_viewEvents.post(CreatePollViewEvents.Success)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user