refact: remove NSFW for confusion (#7)

Co-authored-by: int3debug <gh.ditch236@passinbox.com>
master
int3debug 2024-03-26 13:14:45 +01:00 committed by GitHub
parent 631dcaa1f1
commit 9674b68572
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ cloudstream {
* */
status = 1
tvTypes = listOf("NSFW")
tvTypes = listOf("Movie")
requiresResources = true
language = "en"

View File

@ -18,7 +18,7 @@ class TestPlugin: Plugin() {
openSettings = { ctx ->
val frag = BlankFragment(this)
frag.show(activity!!.supportFragmentManager, "sexFrag")
frag.show(activity!!.supportFragmentManager, "Frag")
}
}
}

View File

@ -7,8 +7,8 @@ import com.lagradost.cloudstream3.SearchResponse
class ExampleProvider(val plugin: TestPlugin) : MainAPI() { // all providers must be an intstance of MainAPI
override var mainUrl = "https://example.com/"
override var name = "Example sex provider"
override val supportedTypes = setOf(TvType.NSFW)
override var name = "Example provider"
override val supportedTypes = setOf(TvType.Movie)
override var lang = "en"