Skip to content

Commit

Permalink
Add missing @query("pageSize") in `IlService.getLatestEpisodesByChann…
Browse files Browse the repository at this point in the history
…elId()` (#27)
  • Loading branch information
Loic-Dumas authored Nov 2, 2023
1 parent 204156c commit 4c202f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Config {

const val major = 0
const val minor = 6
const val patch = 2
const val patch = 3
const val versionName = "$major.$minor.$patch"

const val maven_group = "ch.srg.data.provider"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ interface IlService {
@Path("bu") bu: Bu,
@Path("type") type: IlMediaType,
@Path("channelId") channelId: String,
pageSize: IlPaging.Size? = null
@Query("pageSize") pageSize: IlPaging.Size? = null
): MediaListResult

@GET("2.0/{bu}/mediaList/{type}/latestByChannel/{channelId}")
Expand Down Expand Up @@ -488,4 +488,5 @@ interface IlService {

@GET
suspend fun getSearchShowNextUrl(@Url url: String): SearchResultShowList
//endregion nextUrls
}

0 comments on commit 4c202f3

Please sign in to comment.