Skip to content

Commit

Permalink
Merge pull request #35 from sillygwailo/fix-getAllContexts
Browse files Browse the repository at this point in the history
Fix for call to undefined method in PhotosApi->getAllContexts().
  • Loading branch information
samwilson authored Jul 6, 2020
2 parents 5a5f9b4 + be71808 commit 96f0c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhotosApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function delete($photoId)
*/
public function getAllContexts($photoId)
{
return $this->request('flickr.photos.getAllContexts', ['photo_id' => $photoId]);
return $this->flickr->request('flickr.photos.getAllContexts', ['photo_id' => $photoId]);
}

/**
Expand Down

0 comments on commit 96f0c64

Please sign in to comment.