This commit is contained in:
syuilo 2021-08-07 19:21:17 +09:00
parent fe8334931f
commit 3e45e6c165

View file

@ -218,15 +218,6 @@ export async function createNote(value: string | IObject, resolver?: Resolver, s
if (note.name) {
return await tryCreateVote(note.name, poll.choices.findIndex(x => x === note.name));
}
// 後方互換性のため
if (text) {
const m = text.match(/(\d+)$/);
if (m) {
return await tryCreateVote(m[0], Number(m[1]));
}
}
}
const emojis = await extractEmojis(note.tag || [], actor.host).catch(e => {