fix PacketCounter abbreviate option
All checks were successful
/ Build BaseBand (push) Successful in 2m49s

This commit is contained in:
Daniella / Tove 2024-10-05 03:42:59 +02:00
parent 80cf194d84
commit ab2c00cb0c
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -35,7 +35,7 @@ public class PacketCounter extends Feature {
} }
private String abbreviate(long n) { private String abbreviate(long n) {
if(n < 10_000L) { if(n < 10_000L || !abbrev) {
return String.valueOf(n); return String.valueOf(n);
} }
if(n < 10_000_000L) { if(n < 10_000_000L) {