when adding a room to a space via the chat list item popup, remove it from any other parent spaces it was previously in
This commit is contained in:
parent
10c0cfef2a
commit
f016d6e24b
1 changed files with 4 additions and 1 deletions
|
|
@ -903,7 +903,10 @@ class ChatListController extends State<ChatList>
|
|||
if (space == null) return;
|
||||
await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () => space.setSpaceChild(room.id),
|
||||
// #Pangea
|
||||
// future: () => space.setSpaceChild(room.id),
|
||||
future: () => space.pangeaSetSpaceChild(room.id),
|
||||
// Pangea#
|
||||
);
|
||||
// #Pangea
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue