Add comment.

pull/21833/head
Richard Lewis 2018-03-29 21:31:09 +01:00
parent 003cf61388
commit ff0834ad9d
1 changed files with 6 additions and 1 deletions

View File

@ -450,6 +450,11 @@ 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
// 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)) { && Boolean(mxEv.getContent().body) == Boolean(prevEvent.getContent().body)) {
continuation = true; continuation = true;
} }