4
0
mirror of https://github.com/AltarikMC/Launcher synced 2024-11-21 06:09:51 +01:00

Fix import following an update of msmc (semver of msmc isn't correct)

This commit is contained in:
Quentin Legot 2023-04-01 15:41:09 +02:00
parent 1019daa5ec
commit b025c5c615

View File

@ -7,7 +7,7 @@ const { join } = require("path")
const constants = require("constants")
const zip = require("extract-zip")
const logger = require("electron-log")
const { auth, lst } = require("msmc")
const { Auth, lst } = require("msmc")
const decompress = require("decompress")
const decompressTar = require("decompress-targz")
@ -49,7 +49,7 @@ class Minecraft {
* Used to login through a Microsoft account
*/
microsoftLogin(event, win) {
const authManager = new auth("select_account")
const authManager = new Auth("select_account")
authManager.launch("electron").then(async xboxManager => {
xboxManager.getMinecraft().then(async token => {
if(!token.isDemo()) {