commit
ba6d395f32
2 changed files with 7 additions and 2 deletions
|
|
@ -863,7 +863,7 @@ class ChatListController extends State<ChatList>
|
|||
|
||||
if (space.canSendDefaultStates) {
|
||||
for (final roomId in selectedRoomIds) {
|
||||
await space.pangeaSetSpaceChild(roomId);
|
||||
await space.pangeaSetSpaceChild(roomId, suggested: true);
|
||||
}
|
||||
}
|
||||
// Pangea#
|
||||
|
|
|
|||
|
|
@ -579,7 +579,12 @@ class _SpaceViewState extends State<SpaceView> {
|
|||
: null,
|
||||
);
|
||||
}
|
||||
await activeSpace.setSpaceChild(roomId);
|
||||
await activeSpace.setSpaceChild(
|
||||
roomId,
|
||||
// #Pangea
|
||||
suggested: true,
|
||||
// Pangea#
|
||||
);
|
||||
},
|
||||
);
|
||||
if (result.error != null) return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue