Truncate negative scores

This commit is contained in:
spikecodes 2021-03-19 22:04:44 -07:00
parent 0d6e18d97d
commit dc7e087ed0
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
4 changed files with 14 additions and 16 deletions

View file

@ -451,9 +451,9 @@ pub fn rewrite_urls(text: &str) -> String {
// Append `m` and `k` for millions and thousands respectively
pub fn format_num(num: i64) -> String {
if num >= 1_000_000 {
if num >= 1_000_000 || num <= -1_000_000 {
format!("{}m", num / 1_000_000)
} else if num >= 1000 {
} else if num >= 1000 || num <= -1000 {
format!("{}k", num / 1_000)
} else {
num.to_string()