We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10ae004 commit cd3ee36Copy full SHA for cd3ee36
lib/urls.js
@@ -2,8 +2,8 @@ var Urls= function Urls(request) {
2
this._request= request;
3
};
4
5
-Urls.prototype.lookupUser= function(url) {
6
- return this._request.getRequestPromise("flickr.urls.lookupUser", {"url": url});
+Urls.prototype.lookupUser= function(url, callback) {
+ return this._request.executeRequest("flickr.urls.lookupUser", {"url": url}, false, null, callback);
7
8
9
exports.Urls= Urls;
0 commit comments