Wrap note fetching in a try/catch

This commit is contained in:
s1idewhist1e 2023-04-30 22:03:17 -07:00
parent f0dc329296
commit 45ef53994c

View file

@ -399,8 +399,10 @@ router.get("/notes/:note", async (ctx, next) => {
visibility: In(["public", "home"]),
});
try {
if (note) {
const _note = await Notes.pack(note);
const profile = await UserProfiles.findOneByOrFail({ userId: note.userId });
const meta = await fetchMeta();
await ctx.render("note", {
@ -421,6 +423,7 @@ router.get("/notes/:note", async (ctx, next) => {
return;
}
} catch {}
await next();
});