chore: remove room from discovered list on join in space view (#2637)

pull/2245/head
ggurdin 6 months ago committed by GitHub
parent 176a39d61e
commit dff75100df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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