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

Merge pull request #628 from matrix-org/rxl881/stickerEvent

Switch event type to m.sticker.
This commit is contained in:
Richard Lewis
2018-03-22 10:16:40 +00:00
committed by GitHub

View File

@@ -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,
);
};