We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffd7226 commit d52df34Copy full SHA for d52df34
github.js
@@ -755,7 +755,12 @@
755
var path = "/repos/" + options.user + "/" + options.repo + "/issues";
756
757
this.list = function(options, cb) {
758
- _request("GET", path, options, cb);
+ var query = [];
759
+ for (var key in options) {
760
+ query.push(encodeURIComponent(key) + "=" + encodeURIComponent(options[key]));
761
+ }
762
+
763
+ _request("GET", path + '?' + query.join("&"), false, cb);
764
};
765
766
0 commit comments