catch errors
This commit is contained in:
parent
21c7f93d7a
commit
66429527ca
|
@ -80,34 +80,39 @@ export async function importPosts(
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (const post of parsed.orderedItems) {
|
for (const post of parsed.orderedItems) {
|
||||||
linenum++;
|
try {
|
||||||
if (post.inReplyTo != null) {
|
linenum++;
|
||||||
logger.info(`Is reply, skip [${linenum}] ...`);
|
if (post.inReplyTo != null) {
|
||||||
continue;
|
logger.info(`Is reply, skip [${linenum}] ...`);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (post.directMessage) {
|
||||||
|
logger.info(`Is dm, skip [${linenum}] ...`);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const text = htmlToMfm(post.content, post.tag);
|
||||||
|
logger.info(`Posting[${linenum}] ...`);
|
||||||
|
|
||||||
|
const note = await create(user, {
|
||||||
|
createdAt: new Date(post.published),
|
||||||
|
files: undefined,
|
||||||
|
poll: undefined,
|
||||||
|
text: text || undefined,
|
||||||
|
reply: null,
|
||||||
|
renote: null,
|
||||||
|
cw: post.sensitive,
|
||||||
|
localOnly: false,
|
||||||
|
visibility: "public",
|
||||||
|
visibleUsers: [],
|
||||||
|
channel: null,
|
||||||
|
apMentions: null,
|
||||||
|
apHashtags: undefined,
|
||||||
|
apEmojis: undefined,
|
||||||
|
});
|
||||||
|
} catch (e) {
|
||||||
|
logger.warn(`Error in line:${linenum} ${e}`);
|
||||||
}
|
}
|
||||||
if (post.directMessage) {
|
|
||||||
logger.info(`Is dm, skip [${linenum}] ...`);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
const text = htmlToMfm(post.content, post.tag);
|
|
||||||
logger.info(`Posting[${linenum}] ...`);
|
|
||||||
|
|
||||||
const note = await create(user, {
|
|
||||||
createdAt: new Date(post.published),
|
|
||||||
files: undefined,
|
|
||||||
poll: undefined,
|
|
||||||
text: text || undefined,
|
|
||||||
reply: null,
|
|
||||||
renote: null,
|
|
||||||
cw: post.sensitive,
|
|
||||||
localOnly: false,
|
|
||||||
visibility: "public",
|
|
||||||
visibleUsers: [],
|
|
||||||
channel: null,
|
|
||||||
apMentions: null,
|
|
||||||
apHashtags: undefined,
|
|
||||||
apEmojis: undefined,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in New Issue