mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-03 09:00:28 -06:00
Oops - forgot to multiply bytes into bits for consistency.
This commit is contained in:
parent
0422384b21
commit
c5e8da8159
@ -142,8 +142,8 @@
|
||||
y[4].push(0);
|
||||
y[5].push(0);
|
||||
} else {
|
||||
y[0].push(data[0].Cake.tins[tin].sent_bytes); // Download
|
||||
y[1].push(0.0 - data[1].Cake.tins[tin].sent_bytes); // Upload
|
||||
y[0].push(data[0].Cake.tins[tin].sent_bytes * 8); // Download
|
||||
y[1].push(0.0 - (data[1].Cake.tins[tin].sent_bytes * 8)); // Upload
|
||||
y[2].push(data[0].Cake.tins[tin].drops); // Down Drops
|
||||
y[3].push(data[0].Cake.tins[tin].marks); // Down Marks
|
||||
y[4].push(0.0 - data[1].Cake.tins[tin].drops); // Up Drops
|
||||
|
Loading…
Reference in New Issue
Block a user