Merge branch 'room-fix-internal-type' into 'master'

[Room] Fix internal message type

See merge request famedly/famedlysdk!190
This commit is contained in:
Christian Pauly 2020-02-15 12:27:09 +00:00
commit b16a59a7cb
1 changed files with 3 additions and 2 deletions

View File

@ -498,7 +498,8 @@ class Room {
Future<String> sendEvent(Map<String, dynamic> content,
{String txid, Event inReplyTo}) async {
final String type = this.encrypted ? "m.room.encrypted" : "m.room.message";
final String type = "m.room.message";
final String sendType = this.encrypted ? "m.room.encrypted" : type;
// Create new transaction id
String messageID;
@ -547,7 +548,7 @@ class Room {
try {
final Map<String, dynamic> response = await client.jsonRequest(
type: HTTPType.PUT,
action: "/client/r0/rooms/${id}/send/$type/$messageID",
action: "/client/r0/rooms/${id}/send/$sendType/$messageID",
data: await encryptGroupMessagePayload(content));
final String res = response["event_id"];
eventUpdate.content["status"] = 1;