Revert "preserve non-text details in note summaries"
This reverts commit 23659ab013
.
This commit is contained in:
parent
fa176ab543
commit
2cad08001a
2 changed files with 10 additions and 6 deletions
|
@ -18,12 +18,14 @@ export const getNoteSummary = (note: Packed<'Note'>): string => {
|
||||||
return '(⛔)';
|
return '(⛔)';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (note.cw != null) {
|
||||||
|
return `CW: ${note.cw}`;
|
||||||
|
}
|
||||||
|
|
||||||
let summary = '';
|
let summary = '';
|
||||||
|
|
||||||
// 本文
|
// 本文
|
||||||
if (note.cw != null) {
|
if (note.text) {
|
||||||
summary += `CW: ${note.cw}`;
|
|
||||||
} else if (note.text) {
|
|
||||||
summary += note.text;
|
summary += note.text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,12 +23,14 @@ export const getNoteSummary = (note?: Misskey.entities.Note | null): string => {
|
||||||
return `(${i18n.ts.invisibleNote})`;
|
return `(${i18n.ts.invisibleNote})`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (note.cw != null) {
|
||||||
|
return `CW: ${note.cw}`;
|
||||||
|
}
|
||||||
|
|
||||||
let summary = '';
|
let summary = '';
|
||||||
|
|
||||||
// 本文
|
// 本文
|
||||||
if (note.cw != null) {
|
if (note.text) {
|
||||||
summary += `CW: ${note.cw}`;
|
|
||||||
} else if (note.text) {
|
|
||||||
summary += note.text;
|
summary += note.text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue