From 34b59f079d6fcf88608d172d11e7f42b4626e3a3 Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Mon, 13 May 2024 01:55:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20elector=20separator=20is?= =?UTF-8?q?=20"=20"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- store/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/handler.go b/store/handler.go index 6c5ae00..c2b1f44 100644 --- a/store/handler.go +++ b/store/handler.go @@ -20,7 +20,7 @@ func NewVoting( e []string, a bool, ) error { - electors := strings.Join(e, ";") + electors := strings.Join(e, " ") if _, err := votingInsert.Exec(id, r, d.String(), q.String(), t.String(), electors, a); err != nil { return err }