From 49a572a098a25c32602f7ad85272e54c323dd38c Mon Sep 17 00:00:00 2001 From: samuelp88 <41595779+samuelp88@users.noreply.github.com> Date: Sun, 4 Apr 2021 18:10:06 -0300 Subject: [PATCH] =?UTF-8?q?Corrigido=20erro=20em=20que=20o=20callback=20do?= =?UTF-8?q?=20autoConfirm()=20n=C3=A3o=20estava=20sendo=20chamado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- aternode.js | 7 ++++--- package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 376d7ef..242bd59 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ const aternos = new Aternode(); await aternos.start(); // O evento queue é ativado toda vez que o metodo .autoConfirm() ou o metodo .getStatus() verificam o status atual da fila. - // O callback retorna a posição do servidor na fila e o tempo estimado para o servidor ser iniciado. + // O callback retorna todas informações sobre o servidor sendo iniciado, incluindo tempo estimado e posição na fila. aternos.on('queue', (status) => { console.log(status); }) @@ -60,7 +60,7 @@ const aternosSessionCookie = 'Cookie ATERNOS_SESSION aqui'; await aternos.start(); // O evento queue é ativado toda vez que o metodo .autoConfirm() ou o metodo .getStatus() verificam o status atual da fila. - // O callback retorna a posição do servidor na fila e o tempo estimado para o servidor ser iniciado. + // O callback retorna todas informações sobre o servidor sendo iniciado, incluindo tempo estimado e posição na fila. aternos.on('queue', (status) => { console.log(status); }) diff --git a/aternode.js b/aternode.js index b9aff9f..846b76c 100644 --- a/aternode.js +++ b/aternode.js @@ -212,8 +212,9 @@ class Aternode extends EventEmitter{ status = JSON.parse(lastStatus); } - catch { + catch(err) { req.emit('error', 'login failed or session token invalid'); + } }); @@ -279,9 +280,9 @@ class Aternode extends EventEmitter{ }, 30000); } else { - if (status.serverStatus === 'Online' && callback) + if (status.label === 'Online' && callback) return callback(status); - else if (status.serverStatus === 'Offline') + else if (status.label === 'Offline') return console.error('Algo deu errado enquanto o servidor era iniciado, verifique os logs no site do aternos!'); } diff --git a/package.json b/package.json index 2d66544..250bb73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aternode", - "version": "1.1.0", + "version": "1.1.1", "description": "A simple library to start a server on Aternos using just a few lines", "main": "aternode.js", "homepage": "https://github.com/samuelp88/AterNode",