mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-08-01 00:59:27 +00:00
parent
e7e6e333e6
commit
3bcf74dd75
3 changed files with 3 additions and 0 deletions
|
|
@ -1252,6 +1252,7 @@ private fun MainAppContent(
|
|||
type = section.type,
|
||||
catalogId = section.catalogId,
|
||||
supportsPagination = section.supportsPagination,
|
||||
genre = section.genre,
|
||||
),
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -421,6 +421,7 @@ object FolderDetailRepository {
|
|||
items = tab.items,
|
||||
availableItemCount = tab.items.size,
|
||||
supportsPagination = tab.supportsPagination,
|
||||
genre = tab.genre,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,6 +39,7 @@ data class HomeCatalogSection(
|
|||
val items: List<MetaPreview>,
|
||||
val availableItemCount: Int = items.size,
|
||||
val supportsPagination: Boolean = false,
|
||||
val genre: String? = null,
|
||||
)
|
||||
|
||||
fun HomeCatalogSection.canOpenCatalog(previewLimit: Int): Boolean =
|
||||
|
|
|
|||
Loading…
Reference in a new issue