diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-20 07:01:09 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-20 07:01:09 +0900 |
| commit | e0d6f7c7c4eeb3a9e19ec87b96538e5a4202b2d2 (patch) | |
| tree | 8595d433439deae7c13d5c8bf4e1c7c8bd48f7e5 /src/misc | |
| parent | Improve performance (diff) | |
| download | sharkey-e0d6f7c7c4eeb3a9e19ec87b96538e5a4202b2d2.tar.gz sharkey-e0d6f7c7c4eeb3a9e19ec87b96538e5a4202b2d2.tar.bz2 sharkey-e0d6f7c7c4eeb3a9e19ec87b96538e5a4202b2d2.zip | |
RP --> RN
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/get-note-summary.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/get-note-summary.ts b/src/misc/get-note-summary.ts index d03b174b41..3f96483032 100644 --- a/src/misc/get-note-summary.ts +++ b/src/misc/get-note-summary.ts @@ -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: ...'; } } |