Fix imagebam ripper.

Closes #238
Closes #237
This commit is contained in:
4pr0n 2015-09-17 02:39:58 -07:00
parent d4c54b0f71
commit 998035d17f

View File

@ -139,7 +139,7 @@ public class ImagebamRipper extends AbstractHTMLRipper {
try { try {
Document doc = Http.url(url).get(); Document doc = Http.url(url).get();
// Find image // Find image
Elements images = doc.select("td > img"); Elements images = doc.select(".image-container img");
if (images.size() == 0) { if (images.size() == 0) {
logger.warn("Image not found at " + this.url); logger.warn("Image not found at " + this.url);
return; return;