mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-07 23:58:40 +01:00
Fix issue with expected types.
This commit is contained in:
parent
9f68d9d803
commit
8e375a7fb2
@ -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…
x
Reference in New Issue
Block a user