Add dummy body to remove event

This commit is contained in:
Christian Pauly 2019-06-27 10:20:47 +02:00
parent 96623738e3
commit f7e74436f4
1 changed files with 5 additions and 1 deletions

View File

@ -157,7 +157,11 @@ class Event {
roomID: room.id,
type: "timeline",
eventType: environment,
content: {"event_id": id, "status": -2, "content": {}}));
content: {
"event_id": id,
"status": -2,
"content": {"body": "Removed..."}
}));
}
}