Fix wrong param order for removeChildFromSpace
This commit is contained in:
parent
b7ff884838
commit
df3fe6d6d6
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