Fixed ripper for tapas.io

This commit is contained in:
cyian-1756 2017-11-23 00:51:37 -05:00
parent f6d58ee748
commit 5fc50e524b

View File

@ -38,12 +38,12 @@ public class TapasticRipper extends AbstractHTMLRipper {
@Override @Override
public String getDomain() { public String getDomain() {
return "tapastic.com"; return "tapas.io";
} }
@Override @Override
public String getHost() { public String getHost() {
return "tapastic"; return "tapas";
} }
@Override @Override
@ -100,12 +100,12 @@ public class TapasticRipper extends AbstractHTMLRipper {
@Override @Override
public String getGID(URL url) throws MalformedURLException { public String getGID(URL url) throws MalformedURLException {
Pattern p = Pattern.compile("^http://tapastic.com/series/([^/?]+).*$"); Pattern p = Pattern.compile("^https?://tapas.io/series/([^/?]+).*$");
Matcher m = p.matcher(url.toExternalForm()); Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) { if (m.matches()) {
return "series_ " + m.group(1); return "series_ " + m.group(1);
} }
p = Pattern.compile("^http://tapastic.com/episode/([^/?]+).*$"); p = Pattern.compile("^https?://tapas.io/episode/([^/?]+).*$");
m = p.matcher(url.toExternalForm()); m = p.matcher(url.toExternalForm());
if (m.matches()) { if (m.matches()) {
return "ep_" + m.group(1); return "ep_" + m.group(1);