Skip to content

Commit

Permalink
Fixes #484
Browse files Browse the repository at this point in the history
  • Loading branch information
raiym committed May 17, 2019
1 parent 8db1a95 commit 87ebf56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/InstagramScraper/Instagram.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,8 @@ public function getMediasByUserId($id, $count = 12, $maxId = '')
*/
private function generateGisToken($variables)
{
return md5(implode(':', [$this->getRhxGis(), $variables]));
return null;
// return md5(implode(':', [$this->getRhxGis(), $variables]));
}

/**
Expand Down

0 comments on commit 87ebf56

Please sign in to comment.