backend: tweak get-note-summary

This commit is contained in:
fly_mc 2024-11-18 23:02:36 +08:00
parent 1f85626fad
commit ad51752f38

View file

@ -22,8 +22,8 @@ export const getNoteSummary = (note: Packed<'Note'>): string => {
// 本文
if (note.cw != null) {
summary += note.cw;
} else {
summary += `CW: ${note.cw}`;
} else if (note.text) {
summary += note.text ? note.text : '';
}
@ -39,7 +39,7 @@ export const getNoteSummary = (note: Packed<'Note'>): string => {
// 返信のとき
if (note.replyId) {
if (note.reply) {
if (note.reply && !note.cw) {
summary += `\n\nRE: ${getNoteSummary(note.reply)}`;
} else {
summary += '\n\nRE: ...';
@ -48,7 +48,7 @@ export const getNoteSummary = (note: Packed<'Note'>): string => {
// Renoteのとき
if (note.renoteId) {
if (note.renote) {
if (note.renote && !note.cw) {
summary += `\n\nRN: ${getNoteSummary(note.renote)}`;
} else {
summary += '\n\nRN: ...';