mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 04:06:44 +02:00
Merge pull request #3472 from matrix-org/bwindels/fixlogout
Fix: make sure client exists while logging out
This commit is contained in:
commit
7113772f9d
@ -1830,7 +1830,8 @@ export default createReactClass({
|
||||
|
||||
_setPageSubtitle: function(subtitle='') {
|
||||
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) {
|
||||
subtitle = `| ${ room.name } ${subtitle}`;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user