1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-29 16:43:09 +03:00

Switch event type to m.sticker.

This commit is contained in:
Richard Lewis
2018-03-12 13:56:50 +00:00
parent 349297e495
commit 8ff78c5d60

View File

@@ -1365,7 +1365,7 @@ MatrixClient.prototype.sendStickerMessage = function(roomId, url, info, text, ca
body: text, body: text,
}; };
return this.sendEvent( return this.sendEvent(
roomId, "m.room.sticker", content, callback, undefined, roomId, "m.sticker", content, callback, undefined,
); );
}; };