Added quick queue support for 8muses.download

This commit is contained in:
cyian-1756 2018-05-16 15:32:18 -04:00
parent 67821fb311
commit e541d1cba0

View File

@ -172,6 +172,12 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
if (mat.matches()) { if (mat.matches()) {
return true; return true;
} }
pat = Pattern.compile("https://8muses.download/category/([a-zA-Z0-9-]*)/?");
mat = pat.matcher(url.toExternalForm());
if (mat.matches()) {
return true;
}
} }
@ -196,6 +202,13 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
if (mat.matches()) { if (mat.matches()) {
return true; return true;
} }
pat = Pattern.compile("https://8muses.download/category/([a-zA-Z0-9-]*)/?");
mat = pat.matcher(url.toExternalForm());
if (mat.matches()) {
return true;
}
return false; return false;
} }