mirror of
https://github.com/vector-im/element-web.git
synced 2025-09-03 04:41:03 +02:00
Fix io.element.late_event received_ts vs received_at (#11789)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
b2fb41b91c
commit
afcaec658f
@ -25,7 +25,7 @@ interface UnsignedLateEventInfo {
|
|||||||
/**
|
/**
|
||||||
* Milliseconds since epoch representing the time the event was received by the server
|
* Milliseconds since epoch representing the time the event was received by the server
|
||||||
*/
|
*/
|
||||||
received_at: number;
|
received_ts: number;
|
||||||
/**
|
/**
|
||||||
* An opaque identifier representing the group the server has put the late arriving event into
|
* An opaque identifier representing the group the server has put the late arriving event into
|
||||||
*/
|
*/
|
||||||
|
@ -1127,7 +1127,7 @@ export class UnwrappedEventTile extends React.Component<EventTileProps, IState>
|
|||||||
showRelative={this.context.timelineRenderingType === TimelineRenderingType.ThreadsList}
|
showRelative={this.context.timelineRenderingType === TimelineRenderingType.ThreadsList}
|
||||||
showTwelveHour={this.props.isTwelveHour}
|
showTwelveHour={this.props.isTwelveHour}
|
||||||
ts={ts}
|
ts={ts}
|
||||||
receivedTs={getLateEventInfo(this.props.mxEvent)?.received_at}
|
receivedTs={getLateEventInfo(this.props.mxEvent)?.received_ts}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user