Merge branch 'develop' into t3chguy/fix_forwarding
This commit is contained in:
commit
032650e095
16 changed files with 649 additions and 77 deletions
|
@ -137,6 +137,8 @@ class RoomViewStore extends Store {
|
|||
forwardingEvent: null,
|
||||
roomLoading: false,
|
||||
roomLoadError: null,
|
||||
// should peek by default
|
||||
shouldPeek: payload.should_peek === undefined ? true : payload.should_peek,
|
||||
};
|
||||
|
||||
// If an event ID wasn't specified, default to the one saved for this room
|
||||
|
@ -297,6 +299,10 @@ class RoomViewStore extends Store {
|
|||
getForwardingEvent() {
|
||||
return this._state.forwardingEvent;
|
||||
}
|
||||
|
||||
shouldPeek() {
|
||||
return this._state.shouldPeek;
|
||||
}
|
||||
}
|
||||
|
||||
let singletonRoomViewStore = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue