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 f80ec8a803
commit 589eeb4a51

View file

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