Skip to content

Commit 3b6cea2

Browse files
committed
Fixed error with photosets.getPhotos, had an erroneous api_key argument still.
1 parent 6a37971 commit 3b6cea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/flickr.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ flickr.Photosets.prototype.getList= function(user_id) {
7979
this.api_key);
8080
};
8181

82-
flickr.Photosets.prototype.getPhotos= function(photoset_id, api_key, extras, privacy_filter, per_page, page, media) {
82+
flickr.Photosets.prototype.getPhotos= function(photoset_id, extras, privacy_filter, per_page, page, media) {
8383
var arguments= {"photoset_id": photoset_id};
8484

8585
if( extras !== undefined && extras.join !== undefined ) arguments.extras= extras.join(",");

0 commit comments

Comments
 (0)