diff --git a/lib/User.js b/lib/User.js index 3f3b4bb6..c079f63f 100644 --- a/lib/User.js +++ b/lib/User.js @@ -88,7 +88,7 @@ class User extends Requestable { * @return {Promise} - the promise for the http request */ listGists(cb) { - return this._request('GET', this.__getScopedUrl('gists'), null, cb); + return this._requestAllPages(this.__getScopedUrl('gists'), null, cb); } /**