Fix to handle checkAllNotesRevision might return null notes

This commit is contained in:
Wu Cheng-Han 2016-10-12 17:47:25 +08:00
parent 07673f0726
commit bd6d69d7a7

2
app.js
View file

@ -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);
} }