From d78ce5309a2753693a4076697b101d2fb474822c Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Fri, 14 Feb 2020 22:40:44 +0100 Subject: [PATCH] Remove annoying error message --- guichet.hcl.example | 2 +- invite.go | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/guichet.hcl.example b/guichet.hcl.example index 3136956..1a1c328 100644 --- a/guichet.hcl.example +++ b/guichet.hcl.example @@ -12,7 +12,7 @@ job "guichet" { task "server" { driver = "docker" config { - image = "lxpz/guichet_amd64:7" + image = "lxpz/guichet_amd64:8" readonly_rootfs = true port_map { web_port = 9991 diff --git a/invite.go b/invite.go index 991ba2a..cb83eb4 100644 --- a/invite.go +++ b/invite.go @@ -223,13 +223,11 @@ func handleInviteSendCode(w http.ResponseWriter, r *http.Request) { r.ParseForm() choice := strings.Join(r.Form["choice"], "") - if choice != "display" && choice != "send" { - http.Error(w, "Invalid entry", http.StatusBadRequest) - return - } sendto := strings.Join(r.Form["sendto"], "") - trySendCode(login, choice, sendto, data) + if choice == "display" || choice == "send" { + trySendCode(login, choice, sendto, data) + } } templateInviteSendCode.Execute(w, data)