Add comment.
parent
003cf61388
commit
ff0834ad9d
|
@ -450,7 +450,12 @@ module.exports = React.createClass({
|
||||||
if (prevEvent !== null
|
if (prevEvent !== null
|
||||||
&& prevEvent.sender && mxEv.sender
|
&& prevEvent.sender && mxEv.sender
|
||||||
&& mxEv.sender.userId === prevEvent.sender.userId
|
&& mxEv.sender.userId === prevEvent.sender.userId
|
||||||
&& Boolean(mxEv.getContent().body) == Boolean(prevEvent.getContent().body)) {
|
// The preferred way of checking for 'continuation messages' is by
|
||||||
|
// checking whether subsiquent messages from the same user have a
|
||||||
|
// message body. This is because all messages intended to be displayed
|
||||||
|
// should have a 'body' whereas some (non-m.room) messages (such as
|
||||||
|
// m.sticker) may not have a message 'type'.
|
||||||
|
&& Boolean(mxEv.getContent().body) == Boolean(prevEvent.getContent().body)) {
|
||||||
continuation = true;
|
continuation = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue