Default to no read pins if there is no applicable account data
Signed-off-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
parent
e14e0bf200
commit
e0ddd88ec9
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ module.exports = React.createClass({
|
|||
const pinnedEvents = this.props.room.currentState.getStateEvents("m.room.pinned_events", "");
|
||||
if (!pinnedEvents) return; // nothing to read
|
||||
|
||||
let readStateEvents = null;
|
||||
let readStateEvents = [];
|
||||
const readPinsEvent = this.props.room.getAccountData("im.vector.room.read_pins");
|
||||
if (readPinsEvent && readPinsEvent.getContent()) {
|
||||
readStateEvents = readPinsEvent.getContent().event_ids || [];
|
||||
|
|
Loading…
Reference in a new issue