You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/actionlist/ActionListPresenter.kt
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,11 @@ class ActionListPresenter @Inject constructor(
130
130
if (timelineItem.isRemote) {
131
131
// Can only reply or forward messages already uploaded to the server
Copy file name to clipboardExpand all lines: features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/actionlist/model/TimelineItemAction.kt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@ sealed class TimelineItemAction(
32
32
data objectCopy : TimelineItemAction(CommonStrings.action_copy, VectorIcons.Copy)
33
33
data objectRedact : TimelineItemAction(CommonStrings.action_remove, VectorIcons.Delete, destructive = true)
34
34
data objectReply : TimelineItemAction(CommonStrings.action_reply, VectorIcons.Reply)
35
+
data objectReplyInThread : TimelineItemAction(CommonStrings.action_reply_in_thread, VectorIcons.Reply)
35
36
data objectEdit : TimelineItemAction(CommonStrings.action_edit, VectorIcons.Edit)
36
37
data objectDeveloper : TimelineItemAction(CommonStrings.action_view_source, VectorIcons.DeveloperMode)
37
38
data objectReportContent : TimelineItemAction(CommonStrings.action_report_content, VectorIcons.ReportContent, destructive = true)
Copy file name to clipboardExpand all lines: features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/TimelineStateProvider.kt
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,7 @@ internal fun aTimelineItemEvent(
Copy file name to clipboardExpand all lines: features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/TimelineItemEventRow.kt
Copy file name to clipboardExpand all lines: features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/factories/event/TimelineItemEventFactory.kt
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ class TimelineItemEventFactory @Inject constructor(
71
71
url = senderAvatarUrl,
72
72
size =AvatarSize.TimelineSender
73
73
)
74
+
currentTimelineItem.event
74
75
returnTimelineItem.Event(
75
76
id = currentTimelineItem.uniqueId.toString(),
76
77
eventId = currentTimelineItem.eventId,
@@ -85,6 +86,7 @@ class TimelineItemEventFactory @Inject constructor(
Copy file name to clipboardExpand all lines: features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/model/TimelineItem.kt
Copy file name to clipboardExpand all lines: features/messages/impl/src/test/kotlin/io/element/android/features/messages/textcomposer/MessageComposerPresenterTest.kt
0 commit comments