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).pull/1272/head
parent
2163c8be5c
commit
26ece95905
|
@ -555,9 +555,9 @@ Example returns:
|
||||||
|
|
||||||
{code: 0, message:"ok"}
|
{code: 0, message:"ok"}
|
||||||
*/
|
*/
|
||||||
exports.checkToken = function(padID, callback)
|
exports.checkToken = function(callback)
|
||||||
{
|
{
|
||||||
callback()
|
callback();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue