mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
use splice correctly after removing a local alias
This commit is contained in:
parent
1ae4a1cd5b
commit
3baaaaab07
@ -235,7 +235,7 @@ export default class AliasSettings extends React.Component {
|
||||
// to this room. See https://github.com/vector-im/riot-web/issues/7353
|
||||
MatrixClientPeg.get().deleteAlias(alias).then(() => {
|
||||
const localAliases = this.state.localAliases.slice();
|
||||
localAliases.splice(index);
|
||||
localAliases.splice(index, 1);
|
||||
this.setState({localAliases});
|
||||
|
||||
if (this.state.canonicalAlias === alias) {
|
||||
|
Loading…
Reference in New Issue
Block a user