aboutsummaryrefslogtreecommitdiff
path: root/vendor/maunium.net/go/gomatrix
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-05-23 00:44:08 +0300
committerTulir Asokan <tulir@maunium.net>2018-05-23 00:44:08 +0300
commitbedb9979a9b65dad9d72dcbdb3174508d3714f36 (patch)
treebc5adfadfac2f58fbfe198aec9d93d96cd84656f /vendor/maunium.net/go/gomatrix
parent14903e0cdcd3ba78face2cbe0ad0287da269a1ea (diff)
Update some dependencies
Diffstat (limited to 'vendor/maunium.net/go/gomatrix')
-rw-r--r--vendor/maunium.net/go/gomatrix/events.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/maunium.net/go/gomatrix/events.go b/vendor/maunium.net/go/gomatrix/events.go
index 231dbdd..7233c7c 100644
--- a/vendor/maunium.net/go/gomatrix/events.go
+++ b/vendor/maunium.net/go/gomatrix/events.go
@@ -14,6 +14,7 @@ type Event struct {
ID string `json:"event_id"` // The unique ID of this event
RoomID string `json:"room_id"` // The room the event was sent to. May be nil (e.g. for presence)
Content map[string]interface{} `json:"content"` // The JSON content of the event.
+ Redacts string `json:"redacts,omitempty"` // The event ID that was redacted if a m.room.redaction event
Unsigned Unsigned `json:"unsigned,omitempty"` // Unsigned content set by own homeserver.
}