Handle non-m.room.message event types.
This commit is contained in:
parent
b6f85fbf92
commit
f8d7ab10fa
2 changed files with 3 additions and 2 deletions
|
@ -450,7 +450,7 @@ module.exports = React.createClass({
|
|||
if (prevEvent !== null
|
||||
&& prevEvent.sender && mxEv.sender
|
||||
&& mxEv.sender.userId === prevEvent.sender.userId
|
||||
&& mxEv.getType() == prevEvent.getType()) {
|
||||
&& Boolean(mxEv.getContent().body) == Boolean(prevEvent.getContent().body)) {
|
||||
continuation = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue