Skip to content

Commit

Permalink
Fix copy paste fail ?!
Browse files Browse the repository at this point in the history
Replace $server by $peripheral
  • Loading branch information
normanfeltz authored Dec 5, 2024
1 parent 9872498 commit 408a149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/ReportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -1626,7 +1626,7 @@ public function networkInfrastructure(Request $request)
}
if ($item->peripheral_dest_id !== null) {
$found = false;
foreach ($peripherals as $server) {
foreach ($peripherals as $peripheral) {
if ($item->peripheral_dest_id === $peripheral->id) {
$found = true;
break;
Expand Down

0 comments on commit 408a149

Please sign in to comment.