fix PacketCounter abbreviate option
All checks were successful
/ Build BaseBand (push) Successful in 2m49s
All checks were successful
/ Build BaseBand (push) Successful in 2m49s
This commit is contained in:
parent
80cf194d84
commit
ab2c00cb0c
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ public class PacketCounter extends Feature {
|
|||
}
|
||||
|
||||
private String abbreviate(long n) {
|
||||
if(n < 10_000L) {
|
||||
if(n < 10_000L || !abbrev) {
|
||||
return String.valueOf(n);
|
||||
}
|
||||
if(n < 10_000_000L) {
|
||||
|
|
Loading…
Add table
Reference in a new issue