fix: fall back to votes count if voters count is not supplied (#1146)

pull/1066/head^2
Daniel Roe 2023-01-16 09:57:32 +00:00 zatwierdzone przez GitHub
rodzic d745bd0583
commit 9898a19358
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -28,13 +28,18 @@ async function vote(e: Event) {
}
poll.voted = true
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)
await client.v1.polls.vote(poll.id, { choices })
}
const votersCount = $computed(() => poll.votersCount ?? 0)
const votersCount = $computed(() => poll.votersCount ?? poll.votesCount ?? 0)
</script>
<template>