mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Fix TVType bug in downloads that makes some types act as episode-based but impossible to click
Also fix sorting child list
This commit is contained in:
parent
7214c9ff14
commit
81ae5ec498
1 changed files with 7 additions and 3 deletions
|
@ -11,7 +11,6 @@ import androidx.lifecycle.ViewModel
|
||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
import com.lagradost.cloudstream3.isEpisodeBased
|
import com.lagradost.cloudstream3.isEpisodeBased
|
||||||
import com.lagradost.cloudstream3.isMovieType
|
|
||||||
import com.lagradost.cloudstream3.mvvm.launchSafe
|
import com.lagradost.cloudstream3.mvvm.launchSafe
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.getNameFull
|
import com.lagradost.cloudstream3.utils.AppContextUtils.getNameFull
|
||||||
|
@ -180,7 +179,7 @@ class DownloadViewModel : ViewModel() {
|
||||||
if (bytes <= 0 || downloads <= 0) return@mapNotNull null
|
if (bytes <= 0 || downloads <= 0) return@mapNotNull null
|
||||||
|
|
||||||
val isSelected = selectedItemIds.value?.contains(it.id) ?: false
|
val isSelected = selectedItemIds.value?.contains(it.id) ?: false
|
||||||
val movieEpisode = if (!it.type.isMovieType()) null else context.getKey<VideoDownloadHelper.DownloadEpisodeCached>(
|
val movieEpisode = if (it.type.isEpisodeBased()) null else context.getKey<VideoDownloadHelper.DownloadEpisodeCached>(
|
||||||
DOWNLOAD_EPISODE_CACHE,
|
DOWNLOAD_EPISODE_CACHE,
|
||||||
getFolderName(it.id.toString(), it.id.toString())
|
getFolderName(it.id.toString(), it.id.toString())
|
||||||
)
|
)
|
||||||
|
@ -222,7 +221,12 @@ class DownloadViewModel : ViewModel() {
|
||||||
data = it,
|
data = it,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}.sortedBy { it.data.episode + (it.data.season ?: 0) * 100000 }
|
}.sortedWith(compareBy(
|
||||||
|
// Sort by season first, and then by episode number,
|
||||||
|
// to ensure sorting is consistent.
|
||||||
|
{ it.data.season ?: 0 },
|
||||||
|
{ it.data.episode }
|
||||||
|
))
|
||||||
|
|
||||||
if (previousVisual != visual) {
|
if (previousVisual != visual) {
|
||||||
previousVisual = visual
|
previousVisual = visual
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue