fix(es/latanime): Fix error servers not found (#3227)

This commit is contained in:
Dark25 2024-05-13 09:49:37 +02:00 committed by GitHub
parent a1b00449bf
commit f012b19885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Latanime'
extClass = '.Latanime'
extVersionCode = 16
extVersionCode = 17
}
apply from: "$rootDir/common.gradle"

View File

@ -288,7 +288,7 @@ class Latanime : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
val videos = OkruExtractor(client).videosFromUrl(url, prefix = prefix)
videoList.addAll(videos)
}
url.contains("mp4upload.com") -> {
url.contains("mp4upload") -> {
val videos = Mp4uploadExtractor(client).videosFromUrl(url, headers, prefix = "$prefix ")
videoList.addAll(videos)
}