Skip to content

Commit

Permalink
Hide future shows in mediathek overview
Browse files Browse the repository at this point in the history
  • Loading branch information
cemrich committed Sep 24, 2024
1 parent b581ef3 commit 1cd12f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class QueryRequest : Serializable {

private val sortBy: String = "timestamp"
private val sortOrder: String = "desc"
private val future: Boolean = true

var future: Boolean = true
var offset: Int = 0
var size: Int = 30

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ class MediathekListFragmentViewModel(
private fun createQueryRequest(searchQuery: String): QueryRequest {
return QueryRequest().apply {
size = ITEM_COUNT_PER_PAGE
future = false
setQueryString(searchQuery)
}
}
Expand Down

0 comments on commit 1cd12f4

Please sign in to comment.