Prechádzať zdrojové kódy

fix division by zero

ok236449 2 rokov pred
rodič
commit
dfc3d0bd42

+ 1 - 1
app/Http/Controllers/Admin/OverViewController.php

@@ -97,7 +97,7 @@ class OverViewController extends Controller
                 $output[$nodeId]->totalEarnings = 0;
                 $output[$nodeId]->totalEarnings = 0;
                 $output[$nodeId]->activeEarnings = 0;
                 $output[$nodeId]->activeEarnings = 0;
             }
             }
-            $counters['totalUsagePercent'] = round($counters['totalUsagePercent']/$nodes->count(), 2);
+            $counters['totalUsagePercent'] = ($nodes->count())?round($counters['totalUsagePercent']/$nodes->count(), 2):0;
 
 
             foreach(Pterodactyl::getServers() as $server){ //gets all servers from Pterodactyl and calculates total of credit usage for each node separately + total
             foreach(Pterodactyl::getServers() as $server){ //gets all servers from Pterodactyl and calculates total of credit usage for each node separately + total
                 $nodeId = $server['attributes']['node'];
                 $nodeId = $server['attributes']['node'];