feat: fix backend sql error;fix frontend i18n display error
This commit is contained in:
@@ -23,7 +23,7 @@ async function saveEmail(stream) {
|
||||
|
||||
const recipient = parsed.to ? parsed.to.text : 'undisclosed-recipients';
|
||||
const sender = parsed.from ? parsed.from.text : 'unknown-sender';
|
||||
const subject = parsed.subject;
|
||||
const subject = parsed.subject || 'No Subject';
|
||||
const body = parsed.text || (parsed.html || '');
|
||||
|
||||
const [result] = await db.execute(
|
||||
|
||||
Reference in New Issue
Block a user