We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a38f1c + c301bcf commit b4979e0Copy full SHA for b4979e0
changelog.d/3789.bugfix
@@ -0,0 +1 @@
1
+Send an empty body for POST rooms/{roomId}/receipt/{receiptType}/{eventId}
matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/session/room/RoomAPI.kt
@@ -159,7 +159,8 @@ internal interface RoomAPI {
159
@POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "rooms/{roomId}/receipt/{receiptType}/{eventId}")
160
suspend fun sendReceipt(@Path("roomId") roomId: String,
161
@Path("receiptType") receiptType: String,
162
- @Path("eventId") eventId: String)
+ @Path("eventId") eventId: String,
163
+ @Body body: JsonDict = emptyMap())
164
165
/**
166
* Invite a user to the given room.
0 commit comments