-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MLS #135
MLS #135
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Client ID needs to be changed in index.js and microsoft.js
In authmanager the function exports.validateSelected = async function () {
const current = ConfigManager.getSelectedAccount()
const isValid = await Mojang.validate(current.accessToken, ConfigManager.getClientToken())
if (!isValid) {
try {
if (ConfigManager.getSelectedAccount() === 'microsoft') {
const validate = await validateSelectedMicrosoft()
return validate
} else {
const validate = await validateSelectedMojang()
return validate
}
} catch (error) {
return Promise.reject(error)
}
--- }
+++ } else return true
} |
Unfortunately, I saw the bug happen, |
I've the code a little bit modified (better error handling, german translations & other styles) in my fork, but I can't create a pull request directly, so I'll extract the changes and remove translations to create a new pull request. |
For historical purposes: Thanks everyone, official support will be coming through this PR #216 Relevant links:
|
BY Kurmper
Microsoft Login Support
MLS