perf(server): reduce db query

This commit is contained in:
syuilo 2022-03-21 05:42:11 +09:00
parent 131ff24e53
commit 21de5c4a9c

View file

@ -53,9 +53,7 @@ export default async function renderNote(note: Note, dive = true, isTalk = false
}
}
const user = await Users.findOneOrFail(note.userId);
const attributedTo = `${config.url}/users/${user.id}`;
const attributedTo = `${config.url}/users/${note.userId}`;
const mentions = (JSON.parse(note.mentionedRemoteUsers) as IMentionedRemoteUsers).map(x => x.uri);