From 761a9f636d25ceeb4b9e2aacc552a4a2ef510853 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 22 Oct 2022 14:43:14 +0200 Subject: [PATCH] Hide vote on close --- public/index.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 1b17e17..0bf6e63 100644 --- a/public/index.html +++ b/public/index.html @@ -411,9 +411,11 @@ const activeVote = firebase.functions().httpsCallable('activeVote'); function updateVote() { activeVote().then((data) => { - if (data && data.data) { - console.log(activeVoteData, data); - if (!activeVoteData || activeVoteData.voteId !== data.data.voteId) { + if (data) { + if (!data.data) { + activeVoteData = undefined; + updateVoteUI(true); + } else if (!activeVoteData || activeVoteData.voteId !== data.data.voteId) { activeVoteData = data.data; console.log("Full update"); updateVoteUI(true);