fixup: leftover from removing access to events

This commit is contained in:
Bruno Windels 2019-07-29 19:53:07 +02:00
parent bfdff353b0
commit e23abe209f

View File

@ -4,7 +4,7 @@ export default class MessageTile extends SimpleTile {
constructor(options) { constructor(options) {
super(options); super(options);
this._isOwn = this._entry.event.sender === options.ownUserId; this._isOwn = this._entry.sender === options.ownUserId;
this._date = new Date(this._entry.timestamp); this._date = new Date(this._entry.timestamp);
this._isContinuation = false; this._isContinuation = false;
} }