diff options
Diffstat (limited to 'ubnt_unifi.php')
-rw-r--r-- | ubnt_unifi.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ubnt_unifi.php b/ubnt_unifi.php index 12ba5f1..4491a38 100644 --- a/ubnt_unifi.php +++ b/ubnt_unifi.php @@ -184,8 +184,8 @@ function collect_netw_summary($inp,$host){ //network information $multiplier = 8; $divider = 1; } else { //because the normal INTEGER(32) would be overflowed - $multiplier = 8192; // When showing the controller's summary - $divider = 1024; + $multiplier = 8*1024*1024; // When showing the controller's summary + $divider = 1024*1024; } |