From 147d1f0834525fcd5ee4ef8b8e9f3992b9aadc0f Mon Sep 17 00:00:00 2001 From: Jens van de Wiel Date: Sat, 28 Oct 2023 10:34:44 +0200 Subject: [PATCH] Update prompt.go --- prompt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompt.go b/prompt.go index 2d114ba..4b1d207 100644 --- a/prompt.go +++ b/prompt.go @@ -32,7 +32,7 @@ func AppUpdate(appID int, beta string, validate bool) *Prompt { func Login(username string, password string, authcode string) *Prompt { cmd := "login " if username != "" { - cmd += username + " " + password + " " + authcode + cmd += username + " " + password + " " + authcode + " " } else { cmd += "anonymous" }