diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js
index 9140ee2c71..8a28a31001 100644
--- a/src/components/structures/GroupView.js
+++ b/src/components/structures/GroupView.js
@@ -30,21 +30,20 @@ module.exports = React.createClass({
getInitialState: function() {
return {
- phase: "GroupView.LOADING", // LOADING / DISPLAY / ERROR / NOT_FOUND
summary: null,
error: null,
};
},
componentWillMount: function() {
- this._loadGroupFromServer(this.props.groupId)
+ this._loadGroupFromServer(this.props.groupId);
},
componentWillReceiveProps: function(new_props) {
if (this.props.groupId != new_props.groupId) {
this.setState({
- phase: "GroupView.LOADING",
summary: null,
+ error: null,
})
this._loadGroupFromServer(new_props.groupId);
}
@@ -53,12 +52,11 @@ module.exports = React.createClass({
_loadGroupFromServer: function(groupId) {
MatrixClientPeg.get().getGroupSummary(groupId).done((res) => {
this.setState({
- phase: "GroupView.DISPLAY",
summary: res,
+ error: null,
});
}, (err) => {
this.setState({
- phase: err.httpStatus === 404 ? "GroupView.NOT_FOUND" : "GroupView.ERROR",
summary: null,
error: err,
});
@@ -69,9 +67,9 @@ module.exports = React.createClass({
const BaseAvatar = sdk.getComponent("avatars.BaseAvatar");
const Loader = sdk.getComponent("elements.Spinner");
- if (this.state.phase == "GroupView.LOADING") {
+ if (this.state.summary === null && this.state.error === null) {
return