chore: remove room from discovered list on join in space view (#2637)
This commit is contained in:
parent
176a39d61e
commit
dff75100df
1 changed files with 2 additions and 2 deletions
|
|
@ -65,7 +65,7 @@ class PangeaPublicRoomBottomSheetState
|
|||
notFoundError: L10n.of(context).notTheCodeError,
|
||||
);
|
||||
if (!resp.isError) {
|
||||
Navigator.of(context).pop();
|
||||
Navigator.of(context).pop(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -105,7 +105,7 @@ class PangeaPublicRoomBottomSheetState
|
|||
|
||||
if (result.result != null) {
|
||||
_goToRoom(result.result!);
|
||||
Navigator.of(context).pop();
|
||||
Navigator.of(context).pop(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue