lvl should not fail on non-existant channels

This commit is contained in:
Caleb James DeLisle 2016-03-08 11:43:25 +01:00
parent 1c54af69a1
commit 9f682a985b
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ var getMessages = function (db, channelName, msgHandler) {
if (i < index) { again(i+1); }
}));
};
again(0);
if (index > -1) { again(0); }
});
};