fix: fall back to votes count if voters count is not supplied (#1146)
parent
d745bd0583
commit
9898a19358
|
@ -28,13 +28,18 @@ async function vote(e: Event) {
|
||||||
}
|
}
|
||||||
poll.voted = true
|
poll.voted = true
|
||||||
poll.votesCount++
|
poll.votesCount++
|
||||||
poll.votersCount = (poll.votersCount || 0) + 1
|
|
||||||
|
if (!poll.votersCount && poll.votesCount)
|
||||||
|
poll.votesCount = poll.votesCount + 1
|
||||||
|
else
|
||||||
|
poll.votersCount = (poll.votersCount || 0) + 1
|
||||||
|
|
||||||
cacheStatus({ ...status, poll }, undefined, true)
|
cacheStatus({ ...status, poll }, undefined, true)
|
||||||
|
|
||||||
await client.v1.polls.vote(poll.id, { choices })
|
await client.v1.polls.vote(poll.id, { choices })
|
||||||
}
|
}
|
||||||
|
|
||||||
const votersCount = $computed(() => poll.votersCount ?? 0)
|
const votersCount = $computed(() => poll.votersCount ?? poll.votesCount ?? 0)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in New Issue