Skip to content

Commit 2333edb

Browse files
committed
Fix API break.
1 parent 2bef583 commit 2333edb

File tree

1 file changed

+1
-1
lines changed
  • libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/room

1 file changed

+1
-1
lines changed

libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/room/JoinedRustRoom.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ class JoinedRustRoom(
321321

322322
override suspend fun reportContent(eventId: EventId, reason: String, blockUserId: UserId?): Result<Unit> = withContext(roomDispatcher) {
323323
runCatchingExceptions {
324-
innerRoom.reportContent(eventId = eventId.value, score = null, reason = reason)
324+
innerRoom.reportContent(eventId = eventId.value, reason = reason)
325325
if (blockUserId != null) {
326326
innerRoom.ignoreUser(blockUserId.value)
327327
}

0 commit comments

Comments
 (0)