Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feliztoon01.kt #6580

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ import uy.kohesive.injekt.injectLazy
import kotlin.math.min
import kotlin.random.Random

class BlackToon : HttpSource() {
class Happytoon01 : HttpSource() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to add the number to the class name.


override val name = "블랙툰"
override val name = "해피툰"

override val lang = "ko"

private var currentBaseUrlHost = ""
override val baseUrl = "https://blacktoon.me"
override val baseUrl = "https://happytoon01.com/"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the slash

Suggested change
override val baseUrl = "https://happytoon01.com/"
override val baseUrl = "https://happytoon01.com"


private val cdnUrl = "https://blacktoonimg.com/"
private val cdnUrl = "https://happytoon01.com//"

override val supportsLatest = true

Expand Down
Loading