1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Show the 'homeserver unavailable' warning when the first sync fails

Fixes https://github.com/vector-im/riot-web/issues/7380
This commit is contained in:
Travis Ralston
2018-09-27 14:31:55 -06:00
parent cf0c12f679
commit 16b2fb7fe6

View File

@@ -1253,8 +1253,8 @@ export default React.createClass({
// its own dispatch).
dis.dispatch({action: 'sync_state', prevState, state});
if (state === "ERROR") {
self.setState({syncError: data.error});
if (state === "ERROR" || state === "RECONNECTING") {
self.setState({syncError: data.error || true});
} else if (self.state.syncError) {
self.setState({syncError: null});
}