1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-22 04:02:40 +03:00

dont keep the spinner in the memberlist when fetching /members fails

This commit is contained in:
Bruno Windels
2018-09-10 14:56:10 +02:00
parent aa8e998612
commit 5044d4f2d6

View File

@@ -91,7 +91,9 @@ module.exports = React.createClass({
const cli = MatrixClientPeg.get();
const room = cli.getRoom(this.props.roomId);
if (room) {
try {
await room.loadMembersIfNeeded();
} catch(ex) {/* already logged in RoomView */}
}
},