SinnerComics: Added work around for naming bug (#472)

This commit is contained in:
cyian-1756 2017-03-14 17:16:33 -04:00 committed by metaprime
parent 9889daab44
commit b3873b26b4

View File

@ -74,6 +74,7 @@ public class SinnercomicsRipper extends AbstractHTMLRipper {
List<String> result = new ArrayList<String>();
for (Element el : doc.select("meta[property=og:image]")) {
String imageSource = el.attr("content");
imageSource = imageSource.replace(" alt=", "");
result.add(imageSource);
}
return result;