Update src/node/db/AuthorManager.js

This commit is contained in:
John McLear 2012-09-04 22:47:56 +02:00
parent 890dbfde95
commit 3cbd59c769

View file

@ -153,7 +153,6 @@ exports.getAuthorName = function (authorID, callback)
console.log(authorID);
db.getSub("globalAuthor:" + authorID, ["name"], function(err, authorName){
if(ERR(err, callback)) return;
console.log(authorName);
callback(null, {authorName: authorName});
});
}