add check for missing user

main
Cogent Apps 2023-03-18 00:02:09 +00:00
parent 7b471347bb
commit 0be9133cdc
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export class SQLiteAdapter extends Database {
public async getUser(email: string): Promise<any> {
return new Promise((resolve, reject) => {
db.get(`SELECT * FROM authentication WHERE email = ?`, [email], (err: any, row: any) => {
if (err) {
if (err || !row) {
reject(err);
console.log(`[database:sqlite] failed to get user ${email}`);
} else {