This commit is contained in:
mei23 2019-01-21 05:39:55 +09:00
parent 9d58a2febb
commit a8265d1e49

View file

@ -108,7 +108,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}\uFE0E ${c.text}`);
const cs = note.poll.choices.map(c => `${c.id}: ${c.text}`);
apText += '\n';
apText += cs.join('\n');
}