chore: formatting

This commit is contained in:
ThatOneCalculator 2023-05-08 13:36:53 -07:00
parent cb73e277e9
commit a7c523ee46
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ export async function importPosts(
} else if (parsed instanceof Object) {
logger.info("Parsing animal style posts");
for (const post of parsed.orderedItems) {
async () =>{
async () => {
try {
linenum++;
let reply: Note | null = null;
@ -103,7 +103,7 @@ export async function importPosts(
return;
}
logger.info(`Posting[${linenum}] ...`);
const note = await create(user, {
createdAt: new Date(post.object.published),
files: undefined,
@ -123,7 +123,7 @@ export async function importPosts(
} catch (e) {
logger.warn(`Error in line:${linenum} ${e}`);
}
}
};
}
}
} catch (e) {