mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
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).
This commit is contained in:
parent
2163c8be5c
commit
26ece95905
1 changed files with 2 additions and 2 deletions
|
@ -555,9 +555,9 @@ Example returns:
|
|||
|
||||
{code: 0, message:"ok"}
|
||||
*/
|
||||
exports.checkToken = function(padID, callback)
|
||||
exports.checkToken = function(callback)
|
||||
{
|
||||
callback()
|
||||
callback();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue