Skip to content

Commit

Permalink
Corrigido erro em que o callback do autoConfirm() não estava sendo ch…
Browse files Browse the repository at this point in the history
…amado
  • Loading branch information
samuelp88 committed Apr 4, 2021
1 parent 078eeb9 commit 49a572a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
})
Expand Down Expand Up @@ -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);
})
Expand Down
7 changes: 4 additions & 3 deletions aternode.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,9 @@ class Aternode extends EventEmitter{
status = JSON.parse(lastStatus);

}
catch {
catch(err) {
req.emit('error', 'login failed or session token invalid');

}

});
Expand Down Expand Up @@ -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!');
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 49a572a

Please sign in to comment.