Skip to content

Commit b6cfa64

Browse files
author
Ændrew Rininsland
committed
Merge pull request #100 from torgeir/master
Fetch all issues, not just the first 30.
2 parents 9785c7f + 83896ca commit b6cfa64

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

github.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -776,8 +776,7 @@
776776
for (var key in options) {
777777
query.push(encodeURIComponent(key) + "=" + encodeURIComponent(options[key]));
778778
}
779-
780-
_request("GET", path + '?' + query.join("&"), false, cb);
779+
_requestAllPages(path + '?' + query.join("&"), cb);
781780
};
782781
};
783782

0 commit comments

Comments
 (0)