mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 20:29:10 +03:00
Fix issue with expected types.
This commit is contained in:
parent
9f68d9d803
commit
8e375a7fb2
2 changed files with 2 additions and 2 deletions
|
@ -245,7 +245,7 @@ class MessageItemFactory @Inject constructor(
|
|||
.pollQuestion(createPollQuestion(informationData, pollViewState.question, callback))
|
||||
.canVote(pollViewState.canVote)
|
||||
.votesStatus(pollViewState.votesStatus)
|
||||
.optionViewStates(pollViewState.optionViewStates)
|
||||
.optionViewStates(pollViewState.optionViewStates.orEmpty())
|
||||
.edited(informationData.hasBeenEdited)
|
||||
.highlighted(highlight)
|
||||
.leftGuideline(avatarSizeProvider.leftGuideline)
|
||||
|
|
|
@ -65,7 +65,7 @@ class SpacePreviewController @Inject constructor(
|
|||
subSpaceItem {
|
||||
id(child.roomId)
|
||||
roomId(child.roomId)
|
||||
title(child.name)
|
||||
title(child.name ?: "")
|
||||
depth(depth)
|
||||
avatarUrl(child.avatarUrl)
|
||||
avatarRenderer(host.avatarRenderer)
|
||||
|
|
Loading…
Add table
Reference in a new issue