mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-02 03:36:57 +01:00
revert
This commit is contained in:
parent
9d58a2febb
commit
a8265d1e49
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue