diff options
author | Stephan Jauernick <stephan@stejau.de> | 2012-12-06 21:24:44 +0100 |
---|---|---|
committer | Stephan Jauernick <etherpad-lite@linuxrulz.de> | 2012-12-07 11:28:03 +0100 |
commit | 26ece95905f679917a6f8d3aa7bf7fae658bd6ac (patch) | |
tree | 19b66cdd783d6c84c5166b8091d0a01d0f9bbcd0 /src/node | |
parent | 2163c8be5c8988f45bad7f380e2c0e8691e86798 (diff) | |
download | etherpad-lite-26ece95905f679917a6f8d3aa7bf7fae658bd6ac.zip |
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).
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/db/API.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/db/API.js b/src/node/db/API.js index 18ed1d0c..783cf97f 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(); } |