This commit is contained in:
alex 2024-01-12 14:27:43 +07:00
parent 081e5aa1fd
commit b92fc94c42
1 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ open class SoraStream : TmdbProvider() {
this.backgroundPosterUrl = bgPoster
this.year = year
this.plot = res.overview
this.tags = keywords ?: genres
this.tags = keywords.takeIf { !it.isNullOrEmpty() } ?: genres
this.rating = rating
this.showStatus = getStatus(res.status)
this.recommendations = recommendations
@ -339,7 +339,7 @@ open class SoraStream : TmdbProvider() {
this.year = year
this.plot = res.overview
this.duration = res.runtime
this.tags = keywords ?: genres
this.tags = keywords.takeIf { !it.isNullOrEmpty() } ?: genres
this.rating = rating
this.recommendations = recommendations
this.actors = actors