when adding a room to a space via the chat list item popup, remove it from any other parent spaces it was previously in

pull/1384/head
ggurdin 1 year ago
parent 10c0cfef2a
commit f016d6e24b
No known key found for this signature in database
GPG Key ID: A01CB41737CBB478

@ -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…
Cancel
Save