Fix wrong list used when forwarding an Event to some rooms fails.

This commit is contained in:
Benoit Marty
2023-11-16 17:53:34 +01:00
committed by Benoit Marty
parent e72cc36934
commit 170e35e0e3

View File

@@ -72,7 +72,7 @@ class RoomContentForwarder(
}
if (failedForwardingTo.isNotEmpty()) {
throw ForwardEventException(toRoomIds.toList())
throw ForwardEventException(failedForwardingTo.toList())
}
}
}