mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 22:24:36 +00:00
fix race condition causing audible countdown
This commit is contained in:
parent
84f73ceb01
commit
e3b195d3e2
1 changed files with 2 additions and 2 deletions
|
@ -180,15 +180,15 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
countdown() {
|
||||
this.$store.commit("session/setVoteInProgress", true);
|
||||
this.$store.commit("session/lockVote", 0);
|
||||
this.$store.commit("session/setVoteInProgress", true);
|
||||
this.voteTimer = setInterval(() => {
|
||||
this.start();
|
||||
}, 4000);
|
||||
},
|
||||
start() {
|
||||
this.$store.commit("session/setVoteInProgress", true);
|
||||
this.$store.commit("session/lockVote", 1);
|
||||
this.$store.commit("session/setVoteInProgress", true);
|
||||
clearInterval(this.voteTimer);
|
||||
this.voteTimer = setInterval(() => {
|
||||
this.$store.commit("session/lockVote");
|
||||
|
|
Loading…
Add table
Reference in a new issue