1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-27 07:44:20 +02:00

Fixed instagram ripper

This commit is contained in:
cyian-1756
2018-12-15 16:40:40 -05:00
parent 6f896019a5
commit 5afcb2a35b

View File

@@ -463,6 +463,12 @@ public class InstagramRipper extends AbstractJSONRipper {
Matcher m = jsP.matcher(sb.toString()); Matcher m = jsP.matcher(sb.toString());
if (m.find()) { if (m.find()) {
return m.group(1); 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 { } else {