feat: fix backend sql error;fix frontend i18n display error

This commit is contained in:
2025-07-29 15:35:34 +08:00
parent 32320e1cb0
commit 7ee074249f
4 changed files with 43 additions and 48 deletions
+1 -1
View File
@@ -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(