RP --> RN

This commit is contained in:
syuilo
2018-10-20 07:01:09 +09:00
parent 5d3fe9599b
commit e0d6f7c7c4
5 changed files with 6 additions and 6 deletions

View File

@ -38,9 +38,9 @@ const summarize = (note: any): string => {
// Renoteのとき
if (note.renoteId) {
if (note.renote) {
summary += ` RP: ${summarize(note.renote)}`;
summary += ` RN: ${summarize(note.renote)}`;
} else {
summary += ' RP: ...';
summary += ' RN: ...';
}
}