From f7e74436f43fcd5b51978584cedc2a77a26d0e0d Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 27 Jun 2019 10:20:47 +0200 Subject: [PATCH] Add dummy body to remove event --- lib/src/Event.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/src/Event.dart b/lib/src/Event.dart index 2dcc01a8..775a0b0b 100644 --- a/lib/src/Event.dart +++ b/lib/src/Event.dart @@ -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..."} + })); } }