mirror of
https://github.com/Jacekun/cs3xxx-repo.git
synced 2024-08-14 23:57:09 +00:00
Fix TvType for all plugins
This commit is contained in:
parent
0dd66ffdea
commit
2d5ab87eeb
27 changed files with 61 additions and 61 deletions
|
@ -1,5 +1,5 @@
|
|||
// use an integer for version numbers
|
||||
version = 2
|
||||
version = 3
|
||||
|
||||
|
||||
cloudstream {
|
||||
|
|
|
@ -6,7 +6,7 @@ import com.lagradost.cloudstream3.utils.*
|
|||
|
||||
|
||||
class XvideosProvider : MainAPI() {
|
||||
private val globalTvType = TvType.Movie
|
||||
private val globalTvType = TvType.NSFW
|
||||
override var mainUrl = "https://www.xvideos.com"
|
||||
override var name = "Xvideos"
|
||||
override val hasMainPage = true
|
||||
|
@ -106,7 +106,7 @@ class XvideosProvider : MainAPI() {
|
|||
name = title ?: "",
|
||||
url = url,
|
||||
apiName = this.name,
|
||||
type = tvType,
|
||||
type = globalTvType,
|
||||
episodes = episodes,
|
||||
posterUrl = poster,
|
||||
plot = title,
|
||||
|
@ -119,7 +119,7 @@ class XvideosProvider : MainAPI() {
|
|||
name = title ?: "",
|
||||
url = url,
|
||||
apiName = this.name,
|
||||
type = tvType,
|
||||
type = globalTvType,
|
||||
dataUrl = url,
|
||||
posterUrl = poster,
|
||||
plot = title,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue