From 26ece95905f679917a6f8d3aa7bf7fae658bd6ac Mon Sep 17 00:00:00 2001 From: Stephan Jauernick Date: Thu, 6 Dec 2012 21:24:44 +0100 Subject: [PATCH] Update src/node/db/API.js Added a missing symicolon and removed the padID argument which is not passed(and thus leads to an errors because the callback lands in there). --- src/node/db/API.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/db/API.js b/src/node/db/API.js index 18ed1d0c5..783cf97f2 100644 --- a/src/node/db/API.js +++ b/src/node/db/API.js @@ -555,9 +555,9 @@ Example returns: {code: 0, message:"ok"} */ -exports.checkToken = function(padID, callback) +exports.checkToken = function(callback) { - callback() + callback(); }