Skip to content

Commit

Permalink
refact: remove NSFW for confusion (#7)
Browse files Browse the repository at this point in the history
Co-authored-by: int3debug <[email protected]>
  • Loading branch information
int3debug and int3debug authored Mar 26, 2024
1 parent 631dcaa commit 9674b68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ExampleProvider/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cloudstream {
* */
status = 1

tvTypes = listOf("NSFW")
tvTypes = listOf("Movie")

requiresResources = true
language = "en"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class TestPlugin: Plugin() {

openSettings = { ctx ->
val frag = BlankFragment(this)
frag.show(activity!!.supportFragmentManager, "sexFrag")
frag.show(activity!!.supportFragmentManager, "Frag")
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 9674b68

Please sign in to comment.