Skip to content

Commit

Permalink
Overview field is retrieved from server.
Browse files Browse the repository at this point in the history
  • Loading branch information
hdweiss committed Dec 28, 2024
1 parent 73af118 commit 8915b92
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ class LeanbackChannelWorker(
withContext(Dispatchers.IO) {
val resume = async {
api.itemsApi.getResumeItems(
fields = listOf(ItemFields.DATE_CREATED),
fields = listOf(ItemFields.DATE_CREATED, ItemFields.OVERVIEW),
imageTypeLimit = 1,
limit = 10,
mediaTypes = listOf(MediaType.VIDEO),
Expand All @@ -284,7 +284,7 @@ class LeanbackChannelWorker(
imageTypeLimit = 1,
limit = 10,
enableResumable = false,
fields = listOf(ItemFields.DATE_CREATED),
fields = listOf(ItemFields.DATE_CREATED, ItemFields.OVERVIEW),
).content.items
}

Expand Down

0 comments on commit 8915b92

Please sign in to comment.