mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-26 07:14:38 +02:00
Merge pull request #1110 from cyian-1756/igFixes
Fixed instagram ripper
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user