Fix Kevin & Kell filter.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 5 Aug 2013 10:58:39 +0000 (12:58 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 5 Aug 2013 10:58:39 +0000 (12:58 +0200)
src/main/java/net/pterodactylus/rhynodge/filters/comics/KevinAndKellComicFilter.java

index 3e725d2..bd460ca 100644 (file)
@@ -37,13 +37,13 @@ public class KevinAndKellComicFilter extends ComicSiteFilter {
 
        @Override
        protected Optional<String> extractTitle(Document document) {
-               Elements captionElements = document.select("#caption");
+               Elements captionElements = document.select("#comicstripCaption");
                return Optional.fromNullable(StringEscapeUtils.unescapeHtml4(captionElements.text()));
        }
 
        @Override
        protected List<String> extractImageUrls(Document document) {
-               Elements imageTag = document.select("#comicstrip");
+               Elements imageTag = document.select("#comicstrip img");
                return imageTag.hasAttr("src") ? Arrays.asList(imageTag.attr("src")) : Collections.<String>emptyList();
        }