catch text parsing error

This commit is contained in:
cutestnekoaqua 2023-03-29 21:25:28 +02:00
parent 2398aab82b
commit 4181bee43c
No known key found for this signature in database
GPG key ID: 6BF0964A5069C1E0

View file

@ -92,7 +92,13 @@ export async function importPosts(
logger.info(`Is dm, skip [${linenum}] ...`);
continue;
}
const text = htmlToMfm(post.content, post.tag);
let text;
try {
text = htmlToMfm(post.content, post.tag);
} catch (e) {
logger.warn(`Error while parsing text in line ${linenum}: ${e}`);
continue;
}
logger.info(`Posting[${linenum}] ...`);
const note = await create(user, {