mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Merge pull request #1372 from marcelklehr/fix/checkPad-async.series
Fix #1367: async.series was lacking callback in checkPad.js
This commit is contained in:
commit
c8786bfdf5
1 changed files with 2 additions and 4 deletions
|
@ -28,10 +28,8 @@ async.series([
|
||||||
function(callback) {
|
function(callback) {
|
||||||
settings = require('../src/node/utils/Settings');
|
settings = require('../src/node/utils/Settings');
|
||||||
db = require('../src/node/db/DB');
|
db = require('../src/node/db/DB');
|
||||||
},
|
|
||||||
//intallize the database
|
//intallize the database
|
||||||
function (callback)
|
|
||||||
{
|
|
||||||
db.init(callback);
|
db.init(callback);
|
||||||
},
|
},
|
||||||
//get the pad
|
//get the pad
|
||||||
|
|
Loading…
Reference in a new issue