Remove sources in MoreInfo

This commit is contained in:
Jéluchu 2025-06-05 18:43:31 +02:00
parent a846b2ef4c
commit 6f56611f18
2 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@ fun documentToMoreInfoEntity(doc: Document): MoreInfoEntity {
type = doc.getStringSafe("type"),
url = doc.getStringSafe("url"),
promo = doc.getDocumentSafe("promo")?.let { documentToVideoPromo(it) } ?: VideoPromo(),
source = doc.getStringSafe("source"),
duration = doc.getStringSafe("duration"),
rank = doc.getIntSafe("rank", 0),
titles = doc.getListSafe<Document>("titles").map { documentToAlternativeTitles(it) },

View File

@ -23,7 +23,6 @@ data class MoreInfoEntity(
var type: String = "",
val url: String = "",
val promo: VideoPromo = VideoPromo(),
val source: String = "",
val duration: String = "",
val rank: Int = 0,
val titles: List<AlternativeTitles> = emptyList(),