diff options
Diffstat (limited to 'auth/client.go')
-rw-r--r-- | auth/client.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/auth/client.go b/auth/client.go index 5a3e501..1e504c5 100644 --- a/auth/client.go +++ b/auth/client.go @@ -104,9 +104,7 @@ func validateClientId(clientId string) { /* I'm not sure if ALL client IDs are 32 characters * but that's most likely the case */ if len(clientId) != 32 { - fmt.Println("\x1b[33mWarning:\x1b[0m The Client ID you have entered doesn't have 32 characters.") - fmt.Println("It's not confirmed but MyAnimeList Client IDs have 32 characters. If you think this is a mistake, you can manually verify your Client ID.") - fmt.Println("macli doesn't have a way to verify a Client ID. If you think you entered it correctly you can move on with the login process. If you have problems do consider re-entering the Client ID.") + fmt.Println("\x1b[33mWarning:\x1b[0m The Client ID you have entered has failed the validity check.") if confirmInput("Show entered Client ID? [Y/n] ", true) { fmt.Println("The Client ID you just entered:", clientId) |