Revert nullable field in RoomAPI

This commit is contained in:
Maxime NATUREL 2023-01-25 11:42:27 +01:00
parent 652a2c2834
commit 8a54f7a4ed
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ internal interface RoomAPI {
@GET(NetworkConstants.URI_API_PREFIX_PATH_R0 + "rooms/{roomId}/messages")
suspend fun getRoomMessagesFrom(
@Path("roomId") roomId: String,
@Query("from") from: String?,
@Query("from") from: String,
@Query("dir") dir: String,
@Query("limit") limit: Int?,
@Query("filter") filter: String?,