@Override
protected List<String> extractImageUrls(Document document) {
- Elements imageTags = document.select(".content img");
+ Elements imageTags = document.select("#content img");
return FluentIterable.from(imageTags).transform(new Function<Element, String>() {
@Override
@Override
protected List<String> extractImageComments(Document document) {
- Elements imageTags = document.select(".content img");
+ Elements imageTags = document.select("#content img");
return FluentIterable.from(imageTags).transform(new Function<Element, String>() {
@Override