fix playback & update to agp 7.4.0

updated the crunchyroll parser to use the new streams endpoint to retrieve the media streams
This commit is contained in:
2023-01-25 19:51:38 +01:00
parent 9380f98098
commit 097383a082
12 changed files with 87 additions and 91 deletions

View File

@ -102,9 +102,9 @@ data class TMDBTVShow(
@SerialName("overview")override val overview: String,
@SerialName("poster_path") override val posterPath: String?,
@SerialName("backdrop_path") override val backdropPath: String?,
@SerialName("first_air_date") val firstAirDate: String,
@SerialName("last_air_date") val lastAirDate: String,
@SerialName("status") val status: String,
@SerialName("first_air_date") val firstAirDate: String?,
@SerialName("last_air_date") val lastAirDate: String?,
@SerialName("status") val status: String?,
// TODO genres
) : TMDBResult