forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
60a11f8da5
commit
186d7bbfd9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ export default async function(user: User, note: Note, choice: number) {
|
|||
|
||||
// Increment votes count
|
||||
const index = choice + 1; // In SQL, array index is 1 based
|
||||
await Polls.query(`UPDATE poll SET votes[${index}] = votes[${index}] + 1 WHERE noteId = '${poll.noteId}'`);
|
||||
await Polls.query(`UPDATE poll SET votes[${index}] = votes[${index}] + 1 WHERE "noteId" = '${poll.noteId}'`);
|
||||
|
||||
publishNoteStream(note.id, 'pollVoted', {
|
||||
choice: choice,
|
||||
|
|
Loading…
Reference in a new issue