mirror of
https://github.com/bbara04/Purefin.git
synced 2026-03-31 17:10:08 +02:00
fix: Add default index if season wihtout index received from server
This commit is contained in:
@@ -339,7 +339,7 @@ class InMemoryMediaRepository @Inject constructor(
|
|||||||
id = this.id,
|
id = this.id,
|
||||||
seriesId = this.seriesId!!,
|
seriesId = this.seriesId!!,
|
||||||
name = this.name ?: "Unknown",
|
name = this.name ?: "Unknown",
|
||||||
index = this.indexNumber!!,
|
index = this.indexNumber ?: 0,
|
||||||
unwatchedEpisodeCount = this.userData!!.unplayedItemCount!!,
|
unwatchedEpisodeCount = this.userData!!.unplayedItemCount!!,
|
||||||
episodeCount = this.childCount!!,
|
episodeCount = this.childCount!!,
|
||||||
episodes = emptyList()
|
episodes = emptyList()
|
||||||
|
|||||||
Reference in New Issue
Block a user