Fix wrong param order for removeChildFromSpace

This commit is contained in:
ganfra 2026-01-14 15:27:06 +01:00
parent b7ff884838
commit df3fe6d6d6

View file

@ -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)
}
}