make sure client exists while logging out
This commit is contained in:
parent
86cbaf5b40
commit
26a8398a0e
1 changed files with 2 additions and 1 deletions
|
@ -1830,7 +1830,8 @@ export default createReactClass({
|
||||||
|
|
||||||
_setPageSubtitle: function(subtitle='') {
|
_setPageSubtitle: function(subtitle='') {
|
||||||
if (this.state.currentRoomId) {
|
if (this.state.currentRoomId) {
|
||||||
const room = MatrixClientPeg.get().getRoom(this.state.currentRoomId);
|
const client = MatrixClientPeg.get();
|
||||||
|
const room = client && client.getRoom(this.state.currentRoomId);
|
||||||
if (room) {
|
if (room) {
|
||||||
subtitle = `| ${ room.name } ${subtitle}`;
|
subtitle = `| ${ room.name } ${subtitle}`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue