removed the unused g subdomain from the ehentai ripper (#453)

This commit is contained in:
cyian-1756 2017-02-22 01:24:52 -05:00 committed by metaprime
parent 334a124b9f
commit 06e88efedf

View File

@ -56,7 +56,7 @@ public class EHentaiRipper extends AbstractHTMLRipper {
@Override @Override
public String getDomain() { public String getDomain() {
return "g.e-hentai.org"; return "e-hentai.org";
} }
public String getAlbumTitle(URL url) throws MalformedURLException { public String getAlbumTitle(URL url) throws MalformedURLException {
@ -79,15 +79,15 @@ public class EHentaiRipper extends AbstractHTMLRipper {
Pattern p; Pattern p;
Matcher m; Matcher m;
p = Pattern.compile("^.*g\\.e-hentai\\.org/g/([0-9]+)/([a-fA-F0-9]+)/$"); p = Pattern.compile("^https?://e-hentai\\.org/g/([0-9]+)/([a-fA-F0-9]+)/$");
m = p.matcher(url.toExternalForm()); m = p.matcher(url.toExternalForm());
if (m.matches()) { if (m.matches()) {
return m.group(1) + "-" + m.group(2); return m.group(1) + "-" + m.group(2);
} }
throw new MalformedURLException( throw new MalformedURLException(
"Expected g.e-hentai.org gallery format: " "Expected e-hentai.org gallery format: "
+ "http://g.e-hentai.org/g/####/####/" + "http://e-hentai.org/g/####/####/"
+ " Got: " + url); + " Got: " + url);
} }