Merge pull request #856 from cyian-1756/hitomiRipperFixes

Fixed HitomiRipper
This commit is contained in:
cyian-1756 2018-08-07 14:05:25 -04:00 committed by GitHub
commit b7f8b0edf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ public class HitomiRipper extends AbstractHTMLRipper {
LOGGER.info(json);
JSONArray json_data = new JSONArray(json);
for (int i = 0; i < json_data.length(); i++) {
result.add("https://0a.hitomi.la/galleries/" + galleryId + "/" + json_data.getJSONObject(i).getString("name"));
result.add("https://ba.hitomi.la/galleries/" + galleryId + "/" + json_data.getJSONObject(i).getString("name"));
}
return result;