From 8ff78c5d60418ab97093aa9446fd6e100fbbf449 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Mon, 12 Mar 2018 13:56:50 +0000 Subject: [PATCH] Switch event type to m.sticker. --- src/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.js b/src/client.js index fe2dff69e..372fdd6e4 100644 --- a/src/client.js +++ b/src/client.js @@ -1365,7 +1365,7 @@ MatrixClient.prototype.sendStickerMessage = function(roomId, url, info, text, ca body: text, }; return this.sendEvent( - roomId, "m.room.sticker", content, callback, undefined, + roomId, "m.sticker", content, callback, undefined, ); };