Skip to content

Commit

Permalink
fixed wrong variable name 'err' in webfinger.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nilclass committed May 25, 2012
1 parent 5ece1b1 commit 62e280e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/webfinger.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ define(
function getStorageInfo(userAddress, options, cb) {
userAddress2hostMetas(userAddress, function(err1, hostMetaAddresses) {
if(err1) {
cb(err);
cb(err1);
} else {
fetchXrd(hostMetaAddresses, options.timeout, function(err2, hostMetaLinks) {
if(err2) {
Expand Down

0 comments on commit 62e280e

Please sign in to comment.