Browse Source

fix condition

main
ghost 10 months ago
parent
commit
3d35f47ac9
  1. 2
      src/Controller/MainController.php
  2. 2
      src/Controller/ServerController.php

2
src/Controller/MainController.php

@ -103,7 +103,7 @@ class MainController extends AbstractController @@ -103,7 +103,7 @@ class MainController extends AbstractController
'online' => $server->getOnline(),
'info' => $info,
'status' => $status,
'connections' => is_null($info['Players']) || $info['Players'] < 0 || is_null($info['Bots']) || $info['Bots'] < 0
'connections' => empty($info['Players']) || $info['Players'] < 0 || empty($info['Bots']) || $info['Bots'] < 0
? 0
: (int) $info['Players'] - (int) $info['Bots']
];

2
src/Controller/ServerController.php

@ -177,7 +177,7 @@ class ServerController extends AbstractController @@ -177,7 +177,7 @@ class ServerController extends AbstractController
'online' => $online,
'players' => $players,
'status' => $status,
'connections' => is_null($info['Players']) || $info['Players'] < 0 || is_null($info['Bots']) || $info['Bots'] < 0
'connections' => empty($info['Players']) || $info['Players'] < 0 || empty($info['Bots']) || $info['Bots'] < 0
? 0
: (int) $info['Players'] - (int) $info['Bots']
]

Loading…
Cancel
Save