From f016d6e24b9297412ced3b514b4bdf9900c87349 Mon Sep 17 00:00:00 2001 From: ggurdin Date: Mon, 9 Sep 2024 11:20:32 -0400 Subject: [PATCH] when adding a room to a space via the chat list item popup, remove it from any other parent spaces it was previously in --- lib/pages/chat_list/chat_list.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat_list/chat_list.dart b/lib/pages/chat_list/chat_list.dart index 3423c3612..065f9c9e8 100644 --- a/lib/pages/chat_list/chat_list.dart +++ b/lib/pages/chat_list/chat_list.dart @@ -903,7 +903,10 @@ class ChatListController extends State 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;