Fix wrong param order for removeChildFromSpace
This commit is contained in:
parent
78b4895254
commit
7b8e11c8cb
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ class RustSpaceService(
|
|||
|
||||
override suspend fun removeChildFromSpace(spaceId: RoomId, childId: RoomId): Result<Unit> = withContext(sessionDispatcher) {
|
||||
runCatchingExceptions {
|
||||
innerSpaceService.removeChildFromSpace(spaceId.value, childId.value)
|
||||
innerSpaceService.removeChildFromSpace(childId = childId.value, spaceId = spaceId.value)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue