Merge remote-tracking branch 'upstream/master'

This commit is contained in:
antonydp 2023-02-03 00:52:31 +01:00
commit c8d13155b7
2 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@ import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.loadExtractor
class EntrepeliculasyseriesProvider : MainAPI() {
override var mainUrl = "https://entrepeliculasyseries.nu"
override var mainUrl = "https://entrepeliculasyseries.nz"
override var name = "EntrePeliculasySeries"
override var lang = "es"
override val hasMainPage = true

View File

@ -103,13 +103,13 @@ class StreamingcommunityProvider : MainAPI() {
val href = "$mainUrl/watch/$sid?e=${ep.id}"
val postImage = ep.images.firstOrNull()?.originalURL
newEpisode(href) {
this.name = ep.name
this.season = season
this.episode = ep.number.toInt()
this.description = ep.plot
this.posterUrl = postImage
}
newEpisode(href) {
this.name = ep.name
this.season = season
this.episode = ep.number.toInt()
this.description = ep.plot
this.posterUrl = postImage
}
}
}.flatten()