Don't treat sticker messages as info messages.
This commit is contained in:
parent
aa524c339d
commit
b6f85fbf92
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ module.exports = withMatrixClient(React.createClass({
|
|||
const eventType = this.props.mxEvent.getType();
|
||||
|
||||
// Info messages are basically information about commands processed on a room
|
||||
const isInfoMessage = (eventType !== 'm.room.message');
|
||||
const isInfoMessage = (eventType !== 'm.room.message' && eventType !== 'm.room.sticker');
|
||||
|
||||
const EventTileType = sdk.getComponent(getHandlerTile(this.props.mxEvent));
|
||||
// This shouldn't happen: the caller should check we support this type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue