mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Stop setting auto_join
on space child events (#8863)
It's not a specified property and not even used.
This commit is contained in:
parent
9bbb29a1a2
commit
97a9af42d5
1 changed files with 1 additions and 2 deletions
|
@ -316,11 +316,10 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
|||
return [];
|
||||
};
|
||||
|
||||
public addRoomToSpace(space: Room, roomId: string, via: string[], suggested = false, autoJoin = false) {
|
||||
public addRoomToSpace(space: Room, roomId: string, via: string[], suggested = false) {
|
||||
return this.matrixClient.sendStateEvent(space.roomId, EventType.SpaceChild, {
|
||||
via,
|
||||
suggested,
|
||||
auto_join: autoJoin,
|
||||
}, roomId);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue