Fix complexity error by extracting condition to a val.

This commit is contained in:
Benoit Marty 2024-01-23 14:24:40 +01:00
parent cdbfe8f92c
commit f9aa178388

View file

@ -102,6 +102,9 @@ class ActionListPresenter @Inject constructor(
} }
} }
is TimelineItemPollContent -> { is TimelineItemPollContent -> {
val canEndPoll = timelineItem.isRemote &&
!timelineItem.content.isEnded &&
(timelineItem.isMine || canRedact)
buildList { buildList {
if (timelineItem.isRemote) { if (timelineItem.isRemote) {
// Can only reply or forward messages already uploaded to the server // Can only reply or forward messages already uploaded to the server
@ -110,7 +113,7 @@ class ActionListPresenter @Inject constructor(
if (timelineItem.isRemote && timelineItem.isEditable) { if (timelineItem.isRemote && timelineItem.isEditable) {
add(TimelineItemAction.Edit) add(TimelineItemAction.Edit)
} }
if (timelineItem.isRemote && !timelineItem.content.isEnded && (timelineItem.isMine || canRedact)) { if (canEndPoll) {
add(TimelineItemAction.EndPoll) add(TimelineItemAction.EndPoll)
} }
if (timelineItem.content.canBeCopied()) { if (timelineItem.content.canBeCopied()) {