forked from FoundKeyGang/FoundKey
Refactor
This commit is contained in:
parent
a583939767
commit
fc27890f13
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ export class NoteRepository extends Repository<Note> {
|
|||
const host = note.userHost;
|
||||
|
||||
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 => ({
|
||||
text: c,
|
||||
votes: poll.votes[poll.choices.indexOf(c)],
|
||||
|
|
Loading…
Reference in a new issue