Procházet zdrojové kódy

Tweak "too many login reqs" error message

This explains what happened, instead of telling the user what to do.
tags/v2.0.2^0
Matt Baer před 4 roky
rodič
revize
e6d5a2e79c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      auth.go

+ 1
- 1
auth.go Zobrazit soubor

@@ -36,7 +36,7 @@ func (c *Client) LogIn(username, pass string) (*AuthUser, error) {
} else if status == http.StatusNotFound {
return nil, fmt.Errorf("User does not exist.")
} else if status == http.StatusTooManyRequests {
return nil, fmt.Errorf("Stop repeatedly trying to log in.")
return nil, fmt.Errorf("Too many log in attempts in a short period of time.")
}
return nil, fmt.Errorf("Problem authenticating: %d. %v\n", status, err)
}


Načítá se…
Zrušit
Uložit