diff --git a/src/components/structures/MessagePanel.js b/src/components/structures/MessagePanel.js index 8b9ada14e7..e0ca612b0a 100644 --- a/src/components/structures/MessagePanel.js +++ b/src/components/structures/MessagePanel.js @@ -341,6 +341,9 @@ module.exports = React.createClass({ let last = (i == lastShownEventIndex); if (!this._shouldShowEvent(mxEv)) { + if (mxEv.getId() === this.props.readMarkerEventId) { + ret.push(this._getReadMarkerTile(this.props.readMarkerVisible)); + } continue; }