This commit is contained in:
nemunaire 2021-02-13 18:34:44 +01:00
commit 2f4cc04db2
7 changed files with 30 additions and 29 deletions

View file

@ -18,7 +18,7 @@ func goLogin(stdscr *gc.Window, in chan gc.Key) (string, string, bool) {
}(username, password, validator, validator_err)
if connection(stdscr, in, validator, validator_err) {
e := <- validator_err
e := <-validator_err
return username, e.Error(), true
} else {
return goLogin(stdscr, in)