Update src/node/db/AuthorManager.js

pull/982/head
John McLear 2012-09-04 22:47:56 +02:00
parent 890dbfde95
commit 3cbd59c769
1 changed files with 0 additions and 1 deletions

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});
});
}