Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Nov 11, 2023
1 parent 2d955ad commit 2392d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/application/checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ async function checkApplication(app, ip) {
isOK = await checkAlgorand(ip.split(':')[0], app.compose[0].ports[1]);
} else if (app.name.startsWith('Minecraft') || app.name.startsWith('minecraft') || app.name === 'mcf') {
console.log('here');
isOK = await checkMinecraft(ip.split(':')[0], app.compose[0].ports[0]);
isOK = await checkMinecraft(ip.split(':')[0], app.version >= 4 ? app.compose[0].ports[0] : app.ports[0]);
} else {
const matchIndex = ethersList.findIndex((eApp) => app.name.startsWith(eApp.name));
if (matchIndex > -1) {
Expand Down

0 comments on commit 2392d21

Please sign in to comment.