Skip to content

Commit

Permalink
FIX TP-Link JetStream 3.0.0 Build 20180511 Rel.36491(s) T1500-28PCT 3…
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMoCoDev authored Sep 14, 2023
1 parent 41cffd3 commit 7bbe0a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion includes/polling/ports.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,9 @@

foreach ($port_stats_poe as $p_index => $p_stats) {
$if_id = $port_ent_to_if[$p_index];
$port_stats[$if_id] = array_merge($port_stats[$if_id], $p_stats);
if (is_array($port_stats[$if_id])) {
$port_stats[$if_id] = array_merge($port_stats[$if_id], $p_stats);
}
}
}
}
Expand Down

0 comments on commit 7bbe0a2

Please sign in to comment.