Replace LICD filter with Kotlin version, add test
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / watchers / LeastICouldDoWatcher.java
index 406f1cb..d88f574 100644 (file)
@@ -66,7 +66,7 @@ public class LeastICouldDoWatcher extends DefaultWatcher {
 
                        @Override
                        protected Optional<String> extractUrl(Document document) {
-                               Elements linkTag = document.select("a#feature-comic");
+                               Elements linkTag = document.select("a#latest-comic");
                                return linkTag.hasAttr("href") ? Optional.of(linkTag.attr("href")) : Optional.<String>absent();
                        }
                });