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
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -512,7 +512,7 @@ process.on('SIGINT', function () {
if (history.isReady() && realtime.isReady()) {
models.Revision.checkAllNotesRevision(function (err, notes) {
if (err) throw new Error(err);
if (notes.length <= 0) {
if (!notes || notes.length <= 0) {
clearInterval(checkCleanTimer);
return process.exit(0);
}