Fix #1367: async.series was lacking callback in checkPad.js
parent
6802353306
commit
90ca3d53c3
|
@ -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 New Issue