mirror of
https://github.com/LBRYFoundation/lbry-social-tipbot.git
synced 2025-08-23 17:47:28 +00:00
additional async eachSeries fix
This commit is contained in:
parent
ce50f0a27a
commit
cab6ba00bc
1 changed files with 7 additions and 1 deletions
8
app.js
8
app.js
|
@ -175,7 +175,13 @@ const processCompletedDeposits = (callback) => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
// TODO: Implement inserting messages into a pending message queue instead
|
// TODO: Implement inserting messages into a pending message queue instead
|
||||||
}, cb);
|
}, (err) => {
|
||||||
|
if (err) {
|
||||||
|
return cb(err, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
return cb(null, true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return cb(null, true);
|
return cb(null, true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue