remove debug and add comment
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
f0f721aa32
commit
8c333dc3f7
1 changed files with 2 additions and 1 deletions
|
@ -243,7 +243,7 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
// TODO: Implement granular (per-room) hide options
|
// TODO: Implement granular (per-room) hide options
|
||||||
_shouldShowEvent: function(mxEv) {
|
_shouldShowEvent: function(mxEv) {
|
||||||
console.log("_shouldShowEvent ", mxEv.getId(), mxEv);
|
// console.log("_shouldShowEvent ", mxEv.getId(), mxEv);
|
||||||
const EventTile = sdk.getComponent('rooms.EventTile');
|
const EventTile = sdk.getComponent('rooms.EventTile');
|
||||||
if (!EventTile.haveTileForEvent(mxEv)) {
|
if (!EventTile.haveTileForEvent(mxEv)) {
|
||||||
return false; // no tile = no show
|
return false; // no tile = no show
|
||||||
|
@ -344,6 +344,7 @@ module.exports = React.createClass({
|
||||||
let last = (i == lastShownEventIndex);
|
let last = (i == lastShownEventIndex);
|
||||||
|
|
||||||
if (!this._shouldShowEvent(mxEv)) {
|
if (!this._shouldShowEvent(mxEv)) {
|
||||||
|
// Event is hidden but may be the read marker event
|
||||||
if (mxEv.getId() === this.props.readMarkerEventId) {
|
if (mxEv.getId() === this.props.readMarkerEventId) {
|
||||||
ret.push(this._getReadMarkerTile(this.props.readMarkerVisible));
|
ret.push(this._getReadMarkerTile(this.props.readMarkerVisible));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue