This commit is contained in:
2024-11-07 09:47:10 +08:00
parent 1fcdcb7fda
commit 2e44327def

View File

@@ -1061,7 +1061,7 @@ class Ehentai extends ComicSource {
let reg = RegExp("https?://(e-|ex)hentai.org/g/(\\d+)/(\\w+)/") let reg = RegExp("https?://(e-|ex)hentai.org/g/(\\d+)/(\\w+)/")
let match = reg.exec(url) let match = reg.exec(url)
if(match) { if(match) {
return `https://${this.baseUrl}/g/${match[2]}/${match[3]}/` return `${this.baseUrl}/g/${match[2]}/${match[3]}/`
} }
return null return null
} }