1
0
forked from mirror/misskey

絵文字

This commit is contained in:
mei23 2019-01-21 05:36:39 +09:00
parent f676feff9f
commit 2b35262f0f

View File

@ -109,7 +109,7 @@ export default async function renderNote(note: INote, dive = true): Promise<any>
// 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');
}