Skip to content
Snippets Groups Projects
Commit fc385d38 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Fixed multipliers showing inflated rates

parent 3fc7d4a7
No related branches found
No related tags found
No related merge requests found
......@@ -179,9 +179,9 @@ sub _getKNumber
} elsif ($multiplier eq "K") {
# noop
} elsif ($multiplier eq "M") {
$num *= 1000000;
$num *= 1000;
} elsif ($multiplier eq "G") {
$num *= 1000000000;
$num *= 1000000;
}
return int($num);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment