mirror of
https://github.com/Jacekun/cs3xxx-repo.git
synced 2024-08-14 23:57:09 +00:00
Various cleanups
This commit is contained in:
parent
14e8cf2f0f
commit
ca5ed299dc
9 changed files with 20 additions and 21 deletions
|
@ -1,5 +1,5 @@
|
|||
// use an integer for version numbers
|
||||
version = 1
|
||||
version = 2
|
||||
|
||||
|
||||
cloudstream {
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.example"/>
|
||||
<manifest package="com.lagradost"/>
|
|
@ -18,7 +18,7 @@ class JavSubProvider : MainAPI() {
|
|||
override val hasQuickSearch: Boolean get() = false
|
||||
|
||||
private val prefixTag = "dummyTag" //For use on stream links to differentiate links
|
||||
private val tvType = TvType.NSFW
|
||||
private val globalTvType = TvType.Movie
|
||||
|
||||
data class ResponseMovieDetails(
|
||||
@JsonProperty("name") val name: String?,
|
||||
|
@ -55,7 +55,7 @@ class JavSubProvider : MainAPI() {
|
|||
name = name,
|
||||
url = link,
|
||||
apiName = this.name,
|
||||
type = tvType,
|
||||
type = globalTvType,
|
||||
posterUrl = image,
|
||||
year = year
|
||||
)
|
||||
|
@ -96,7 +96,7 @@ class JavSubProvider : MainAPI() {
|
|||
name = title,
|
||||
url = link,
|
||||
apiName = this.name,
|
||||
type = tvType,
|
||||
type = globalTvType,
|
||||
posterUrl = image,
|
||||
year = year
|
||||
)
|
||||
|
@ -158,7 +158,7 @@ class JavSubProvider : MainAPI() {
|
|||
name = title,
|
||||
url = url,
|
||||
apiName = this.name,
|
||||
type = tvType,
|
||||
type = globalTvType,
|
||||
dataUrl = playerIframes.toJson(),
|
||||
posterUrl = poster,
|
||||
year = year,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue