1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-01 19:40:18 +02:00

Fixed typo

This commit is contained in:
cyian-1756
2017-03-23 17:22:36 -04:00
parent 2c0010f9df
commit 6d352fcdc5

View File

@@ -94,7 +94,7 @@ public class HentaifoundryRipper extends AbstractHTMLRipper {
logger.info("Couldn't find user & image ID in " + thumb.attr("href"));
continue;
}
String[] titleSplit = thumb.attr("herf").split("/");
String[] titleSplit = thumb.attr("href").split("/");
String title = titleSplit[titleSplit.length -1];
String user = imgMatcher.group(1),
imageId = imgMatcher.group(2);