This commit is contained in:
tamaina 2022-03-15 22:44:12 +09:00
parent 312f46378d
commit 9c4f5a7435
1 changed files with 5 additions and 6 deletions

View File

@ -24,13 +24,12 @@ function truncateNotification(notification: Packed<'Notification'>): any {
...notification.note,
// textをgetNoteSummaryしたものに置き換える
text: getNoteSummary(notification.type === 'renote' ? notification.note.renote as Packed<'Note'> : notification.note),
...{
cw: undefined,
reply: undefined,
renote: undefined,
user: undefined as any, // 通知を受け取ったユーザーである場合が多いのでこれも捨てる
}
}
};
}