tnbtu ripper now sets referrer header

This commit is contained in:
cyian-1756 2018-04-19 04:53:34 -04:00
parent 1dadd26e05
commit fdf3e7c68d

View File

@ -327,10 +327,16 @@ public class WordpressComicRipper extends AbstractHTMLRipper {
|| getHost().contains("themonsterunderthebed.net")) { || getHost().contains("themonsterunderthebed.net")) {
addURLToDownload(url, pageTitle + "_"); addURLToDownload(url, pageTitle + "_");
} }
if (getHost().contains("tnbtu.com")) {
// We need to set the referrer header for tnbtu
addURLToDownload(url, getPrefix(index), "","http://www.tnbtu.com/comic", null);
} else {
// If we're ripping a site where we can't get the page number/title we just rip normally // If we're ripping a site where we can't get the page number/title we just rip normally
addURLToDownload(url, getPrefix(index)); addURLToDownload(url, getPrefix(index));
} }
}
@Override @Override
public Document getFirstPage() throws IOException { public Document getFirstPage() throws IOException {
// "url" is an instance field of the superclass // "url" is an instance field of the superclass