Add million support

This commit is contained in:
spikecodes 2020-12-07 11:36:05 -08:00
parent 8509f6e22d
commit 528fe15819
3 changed files with 9 additions and 3 deletions

View file

@ -88,7 +88,13 @@ pub async fn format_url(url: &str) -> String {
}
pub fn format_num(num: i64) -> String {
return if num > 1000 { format!("{}k", num / 1000) } else { num.to_string() };
if num > 1000000 {
format!("{}m", num / 1000000)
} else if num > 1000 {
format!("{}k", num / 1000)
} else {
num.to_string()
}
}
//