From fbe0044256d517a10399743497302e407e9d3ad6 Mon Sep 17 00:00:00 2001 From: David Florness Date: Mon, 18 Jan 2021 20:53:10 -0500 Subject: [PATCH] Be sure to set FinalVoters when starting election --- election/voter.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/election/voter.go b/election/voter.go index 22ec082..93114f1 100644 --- a/election/voter.go +++ b/election/voter.go @@ -148,7 +148,9 @@ func (el *Election) StartElection(client *mautrix.Client) error { if err != nil { return err } + // OnStartElectionMessage(client, startEvt, elections) el.StartEvt = startEvt + el.FinalVoters = &voters return nil } -- 2.38.4