From 83fcdcf30f00b3fa570f4772146755f2abda2ed6 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Wed, 8 Mar 2023 17:10:25 +0200 Subject: [PATCH] Add room id field to replies --- event/relations.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/event/relations.go b/event/relations.go index 0248323b..ecd7a959 100644 --- a/event/relations.go +++ b/event/relations.go @@ -32,6 +32,8 @@ type RelatesTo struct { type InReplyTo struct { EventID id.EventID `json:"event_id,omitempty"` + + UnstableRoomID id.RoomID `json:"room_id,omitempty"` } func (rel *RelatesTo) Copy() *RelatesTo {