mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Avoid self = this
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
7f8c0e99ea
commit
8bbaf642bf
1 changed files with 1 additions and 3 deletions
|
@ -173,8 +173,6 @@ export default class SecurityUserSettingsTab extends React.Component<IProps, ISt
|
||||||
});
|
});
|
||||||
|
|
||||||
// Execute all acceptances/rejections sequentially
|
// Execute all acceptances/rejections sequentially
|
||||||
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
||||||
const self = this;
|
|
||||||
const cli = MatrixClientPeg.get();
|
const cli = MatrixClientPeg.get();
|
||||||
const action = accept ? cli.joinRoom.bind(cli) : cli.leave.bind(cli);
|
const action = accept ? cli.joinRoom.bind(cli) : cli.leave.bind(cli);
|
||||||
for (let i = 0; i < invitedRoomIds.length; i++) {
|
for (let i = 0; i < invitedRoomIds.length; i++) {
|
||||||
|
@ -183,7 +181,7 @@ export default class SecurityUserSettingsTab extends React.Component<IProps, ISt
|
||||||
// Accept/reject invite
|
// Accept/reject invite
|
||||||
await action(roomId).then(() => {
|
await action(roomId).then(() => {
|
||||||
// No error, update invited rooms button
|
// No error, update invited rooms button
|
||||||
this.setState({ invitedRoomAmt: self.state.invitedRoomAmt - 1 });
|
this.setState({ invitedRoomAmt: this.state.invitedRoomAmt - 1 });
|
||||||
}, async (e) => {
|
}, async (e) => {
|
||||||
// Action failure
|
// Action failure
|
||||||
if (e.errcode === "M_LIMIT_EXCEEDED") {
|
if (e.errcode === "M_LIMIT_EXCEEDED") {
|
||||||
|
|
Loading…
Reference in a new issue