Skip to content

Commit

Permalink
Merge pull request #1110 from cyian-1756/igFixes
Browse files Browse the repository at this point in the history
Fixed instagram ripper
  • Loading branch information
cyian-1756 authored Dec 15, 2018
2 parents ef54fba + 5afcb2a commit 6c35be1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,12 @@ private String getQHash(Document doc) {
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 {
Expand Down

0 comments on commit 6c35be1

Please sign in to comment.