Clean up
This commit is contained in:
parent
fe8334931f
commit
3e45e6c165
1 changed files with 0 additions and 9 deletions
|
@ -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 => {
|
||||
|
|
Loading…
Reference in a new issue