diff --git a/src/components/structures/RoomStatusBar.js b/src/components/structures/RoomStatusBar.js index a8f0de3e92..75cb06daf6 100644 --- a/src/components/structures/RoomStatusBar.js +++ b/src/components/structures/RoomStatusBar.js @@ -111,6 +111,10 @@ module.exports = React.createClass({ ); } + if (this.state.syncState === "ERROR") { + return null; + } + if (wantPlaceholder) { return (
...