Uses the user to avoid Java removing the variable due to lack of usage.
This commit is contained in:
@@ -778,7 +778,16 @@ fun RenderContentDVMThumb(
|
|||||||
.clip(QuoteBorder),
|
.clip(QuoteBorder),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
} ?: run { DisplayAuthorBanner(baseNote) }
|
} ?: run {
|
||||||
|
user?.value?.user?.let {
|
||||||
|
BannerImage(
|
||||||
|
it,
|
||||||
|
Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.clip(QuoteBorder),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onTitleRow = {
|
onTitleRow = {
|
||||||
Text(
|
Text(
|
||||||
|
|||||||
Reference in New Issue
Block a user