Fix getUnprocessedCount error message

This commit is contained in:
Evan Hahn 2021-04-14 12:31:10 -05:00
parent a50d797d16
commit 1366c93ed8

View file

@ -3513,7 +3513,7 @@ async function getUnprocessedCount() {
const row = await db.get('SELECT count(*) from unprocessed;');
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(*)'];