Fix wrong param order for removeChildFromSpace

This commit is contained in:
ganfra 2026-01-14 15:27:06 +01:00
parent 78b4895254
commit 7b8e11c8cb

View file

@ -81,7 +81,7 @@ class RustSpaceService(
override suspend fun removeChildFromSpace(spaceId: RoomId, childId: RoomId): Result<Unit> = withContext(sessionDispatcher) { override suspend fun removeChildFromSpace(spaceId: RoomId, childId: RoomId): Result<Unit> = withContext(sessionDispatcher) {
runCatchingExceptions { runCatchingExceptions {
innerSpaceService.removeChildFromSpace(spaceId.value, childId.value) innerSpaceService.removeChildFromSpace(childId = childId.value, spaceId = spaceId.value)
} }
} }