Skip to content

Commit

Permalink
more extensions fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dark25 committed Jul 25, 2024
1 parent f657b3d commit 6ec7592
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Kinoking : DooPlay(
link.contains("https://dood") && hosterSelection.contains("dood") -> {
val quality = "Doodstream"
val redirect = !link.contains("https://doodstream")
doodExtractor.videosFromUrl(link, quality, redirect)
doodExtractor.videosFromUrl(link, quality)
}
link.contains("https://voe.sx") && hosterSelection.contains("voe") -> {
voeExtractor.videosFromUrl(link)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class Animefenix : ConfigurableAnimeSource, AnimeHttpSource() {
StreamWishExtractor(client, docHeaders).videosFromUrl(url, videoNameGen = { "StreamWish:$it" }).also(videoList::addAll)
}
if (embedUrl.contains("doodstream") || embedUrl.contains("dood.")) {
DoodExtractor(client).videoFromUrl(url, "DoodStream", false)?.let { videoList.add(it) }
DoodExtractor(client).videoFromUrl(url, "DoodStream")?.let { videoList.add(it) }
}
if (embedUrl.contains("streamlare")) {
StreamlareExtractor(client).videosFromUrl(url).let { videoList.addAll(it) }
Expand Down

0 comments on commit 6ec7592

Please sign in to comment.