Add more clear documentation
This commit is contained in:
parent
f31b130b49
commit
c2ec7cfa0f
|
@ -24,5 +24,9 @@ interface RelationContent {
|
||||||
val eventId: String?
|
val eventId: String?
|
||||||
val inReplyTo: ReplyToContent?
|
val inReplyTo: ReplyToContent?
|
||||||
val option: Int?
|
val option: Int?
|
||||||
val isFallingBack: Boolean? // Thread fallback to differentiate replies within threads
|
/**
|
||||||
|
* This flag indicates that the message should be displayed in the main
|
||||||
|
* timeline as a reply if needed
|
||||||
|
*/
|
||||||
|
val isFallingBack: Boolean?
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,7 +100,7 @@ internal class EventEditor @Inject constructor(private val eventSenderProcessor:
|
||||||
eventReplied = originalTimelineEvent,
|
eventReplied = originalTimelineEvent,
|
||||||
replyText = newBodyText,
|
replyText = newBodyText,
|
||||||
autoMarkdown = false,
|
autoMarkdown = false,
|
||||||
showInThread = false // Test that value
|
showInThread = false
|
||||||
)?.copy(
|
)?.copy(
|
||||||
eventId = replyToEdit.eventId
|
eventId = replyToEdit.eventId
|
||||||
) ?: return NoOpCancellable
|
) ?: return NoOpCancellable
|
||||||
|
|
Loading…
Reference in New Issue