非正規化カラムを削除

非正規化するほどの情報じゃない
This commit is contained in:
syuilo
2019-04-12 00:42:39 +09:00
parent ab8c6515b8
commit 11c30eccb3
4 changed files with 12 additions and 11 deletions

View File

@@ -90,7 +90,9 @@ export default async (user: User, note: Note, reaction: string) => {
// リアクターがローカルユーザーかつリアクション対象がリモートユーザーの投稿なら配送
if (Users.isLocalUser(user) && note.userHost !== null) {
const content = renderActivity(renderLike(user, note, reaction));
deliver(user, content, note.userInbox);
Users.findOne(note.userId).then(u => {
deliver(user, content, u.inbox);
});
}
//#endregion
};