Adds named parameters to OpenRoomList startActivity
This commit is contained in:
parent
5b8909b5d2
commit
431651ba2f
|
@ -177,7 +177,11 @@ class DefaultNavigator @Inject constructor(
|
|||
startActivity(context, SpaceManageActivity.newIntent(context, spaceId, ManageType.AddRooms), false)
|
||||
}
|
||||
Navigator.PostSwitchSpaceAction.OpenRoomList -> {
|
||||
startActivity(context, SpaceExploreActivity.newIntent(context, spaceId), false)
|
||||
startActivity(
|
||||
context = context,
|
||||
intent = SpaceExploreActivity.newIntent(context, spaceId),
|
||||
buildTask = false
|
||||
)
|
||||
}
|
||||
is Navigator.PostSwitchSpaceAction.OpenDefaultRoom -> {
|
||||
val args = TimelineArgs(
|
||||
|
|
Loading…
Reference in New Issue