fixed bug in github show function

This commit is contained in:
coderaiser 2012-12-03 08:57:35 -05:00
parent 6fe79d912a
commit 49763d1d06
2 changed files with 3 additions and 1 deletions

View file

@ -150,6 +150,8 @@ Javascript dissabled.
oauth_client_secre to github_id and github_secret.
Added dropbox_id option.
* Fixed bug in github show function.
2012.10.01, Version 0.1.7

View file

@ -82,7 +82,7 @@
this.show = function(username, cb) {
var command = username ? "/users/"+username : "/user";
_request("GET", "/users/"+username, null, function(err, res) {
_request("GET", command, null, function(err, res) {
cb(err, res);
});
};