mirror of https://github.com/status-im/codimd.git
Fix to handle checkAllNotesRevision might return null notes
This commit is contained in:
parent
07673f0726
commit
bd6d69d7a7
2
app.js
2
app.js
|
@ -512,7 +512,7 @@ process.on('SIGINT', function () {
|
||||||
if (history.isReady() && realtime.isReady()) {
|
if (history.isReady() && realtime.isReady()) {
|
||||||
models.Revision.checkAllNotesRevision(function (err, notes) {
|
models.Revision.checkAllNotesRevision(function (err, notes) {
|
||||||
if (err) throw new Error(err);
|
if (err) throw new Error(err);
|
||||||
if (notes.length <= 0) {
|
if (!notes || notes.length <= 0) {
|
||||||
clearInterval(checkCleanTimer);
|
clearInterval(checkCleanTimer);
|
||||||
return process.exit(0);
|
return process.exit(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue