Merge branch 'hiqua-no_lower_limit_query' into next-beta

This commit is contained in:
Evan Hahn 2021-04-14 13:43:24 -05:00 committed by Scott Nonnenberg
commit ea6562b7ac
9 changed files with 111 additions and 93 deletions

View file

@ -3438,7 +3438,7 @@ async function getUnprocessedCount(): Promise<number> {
const row = db.prepare<EmptyQuery>('SELECT count(*) from unprocessed;').get();
if (!row) {
throw new Error('getMessageCount: Unable to get count of unprocessed');
throw new Error('getUnprocessedCount: Unable to get count of unprocessed');
}
return row['count(*)'];