1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Update thread relation fields to match MSC3440 changes (#2218)

This commit is contained in:
Michael Telatynski
2022-03-09 16:15:44 +00:00
committed by GitHub
parent 460f4f9254
commit 35a375e3d2

View File

@@ -106,7 +106,8 @@ export interface IEventRelation {
event_id: string; event_id: string;
"m.in_reply_to"?: { "m.in_reply_to"?: {
event_id: string; event_id: string;
"m.render_in"?: string[]; is_falling_back?: boolean;
"io.element.is_falling_back"?: boolean; // unstable variant of `is_falling_back` - MSC3440
}; };
key?: string; key?: string;
} }