mirror of
https://github.com/vector-im/element-web.git
synced 2026-01-13 20:41:52 +01: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…
x
Reference in New Issue
Block a user