From 2b35262f0fd1bc58d2f220682f9cd76783ac6fc9 Mon Sep 17 00:00:00 2001 From: mei23 Date: Mon, 21 Jan 2019 05:36:39 +0900 Subject: [PATCH] =?UTF-8?q?=E7=B5=B5=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/remote/activitypub/renderer/note.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote/activitypub/renderer/note.ts b/src/remote/activitypub/renderer/note.ts index 812ad5c763..ae2265f91c 100644 --- a/src/remote/activitypub/renderer/note.ts +++ b/src/remote/activitypub/renderer/note.ts @@ -109,7 +109,7 @@ export default async function renderNote(note: INote, dive = true): Promise // Provides choices as text for AP if (note.poll != null) { - const cs = note.poll.choices.map(c => `${c.id}: ${c.text}`); + const cs = note.poll.choices.map(c => `${c.id}\uFE0E: ${c.text}`); apText += '\n'; apText += cs.join('\n'); }