From 7cec03a377ff5231fc718ba85cbfe6084d3e2d5e Mon Sep 17 00:00:00 2001 From: Balthazar Wilson <wilsonba@etu.utc.fr> Date: Thu, 19 Oct 2023 19:37:31 +0200 Subject: [PATCH] fix: options voting --- agt/ballotagent/vote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agt/ballotagent/vote.go b/agt/ballotagent/vote.go index 0bb7f87..0d9a142 100644 --- a/agt/ballotagent/vote.go +++ b/agt/ballotagent/vote.go @@ -92,7 +92,7 @@ func (rsa *BallotServerAgent) receiveVote(w http.ResponseWriter, r *http.Request // Register the vote ballot.profile = append(ballot.profile, intToAlt(req.Prefs)) if len(req.Options) != 0 { - ballot.options = append(ballot.options, req.Options[0]) + ballot.options = append(ballot.options, req.Options) } // On elève l'agent de la liste des agents votants for i, agt := range ballot.votersId { -- GitLab