the-obsidian / DiscordBridge

:speech_balloon: Chat bridge between Minecraft and Discord
Other
45 stars 7 forks source link

If password begins with 0 in config, DiscordBridge moves the 0 to the end and adds a decimal #37

Closed Okramto closed 8 years ago

Okramto commented 8 years ago

For example;

Before DiscordBridge is loaded:

password: 05478

After DiscordBridge is loaded:

password: 5478.0

This results in an error.

Error connecting to Discord: javax.security.auth.login.LoginException: The provided email / password combination was incorrect. Please provide valid details.

jacobwgillespie commented 8 years ago

Try adding quotes, like this and it should work:

password: "05478"

Okramto commented 8 years ago

Can't believe I didn't try that. It works. You are just on an issue closing roll right now ;)