1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 15:24:51 +02:00

Merge pull request #1110 from cyian-1756/igFixes

Fixed instagram ripper
This commit is contained in:
cyian-1756
2018-12-15 17:22:41 -05:00
committed by GitHub

View File

@@ -463,6 +463,12 @@ public class InstagramRipper extends AbstractJSONRipper {
Matcher m = jsP.matcher(sb.toString());
if (m.find()) {
return m.group(1);
} else {
jsP = Pattern.compile("0:s\\.pagination},queryId:.([a-zA-Z0-9]+)");
m = jsP.matcher(sb.toString());
if (m.find()) {
return m.group(1);
}
}
} else {