diff --git a/src/remote/activitypub/misc/get-note-html.ts b/src/remote/activitypub/misc/get-note-html.ts index a63059a38..5bca4eed6 100644 --- a/src/remote/activitypub/misc/get-note-html.ts +++ b/src/remote/activitypub/misc/get-note-html.ts @@ -11,7 +11,12 @@ export default function(note: INote) { if (note.poll != null) { const url = `${config.url}/notes/${note._id}`; // TODO: i18n - html += `

【投票】
${url}

`; + html += `

【Misskeyで投票を見る】

`; + } + + if (note.renoteId != null) { + const url = `${config.url}/notes/${note.renoteId}`; + html += `

RE: ${url}

`; } return html;