mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-14 06:38:11 +09:00
Refactor
This commit is contained in:
parent
f87b1582a7
commit
0f9e0b9c83
@ -103,7 +103,7 @@ export class NoteRepository extends Repository<Note> {
|
|||||||
const host = note.userHost;
|
const host = note.userHost;
|
||||||
|
|
||||||
async function populatePoll() {
|
async function populatePoll() {
|
||||||
const poll = await Polls.findOne({ noteId: note.id }).then(ensure);
|
const poll = await Polls.findOne(note.id).then(ensure);
|
||||||
const choices = poll.choices.map(c => ({
|
const choices = poll.choices.map(c => ({
|
||||||
text: c,
|
text: c,
|
||||||
votes: poll.votes[poll.choices.indexOf(c)],
|
votes: poll.votes[poll.choices.indexOf(c)],
|
||||||
|
Loading…
Reference in New Issue
Block a user