1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Fixed Unignore state variable naming missmatch

Signed-off-by: Agusti Bau <agustibau@gmail.com>
This commit is contained in:
Agusti Bau
2020-04-21 22:25:37 +02:00
parent 355539feb5
commit 7a42caa326

View File

@@ -89,13 +89,13 @@ export default class SecurityUserSettingsTab extends React.Component {
// Don't use this.state to get the ignored user list as it might be
// ever so slightly outdated. Instead, prefer to get a fresh list and
// update that.
const ignoredUsers = MatrixClientPeg.get().getIgnoredUsers();
const index = ignoredUsers.indexOf(userId);
const ignoredUserIds = MatrixClientPeg.get().getIgnoredUsers();
const index = ignoredUserIds.indexOf(userId);
if (index !== -1) {
ignoredUsers.splice(index, 1);
MatrixClientPeg.get().setIgnoredUsers(ignoredUsers);
ignoredUserIds.splice(index, 1);
MatrixClientPeg.get().setIgnoredUsers(ignoredUserIds);
}
this.setState({ignoredUsers});
this.setState({ignoredUserIds});
};
_getInvitedRooms = () => {