mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-05 15:18:57 +01:00
Convert to f32 before rounding to fix arm issue
This commit is contained in:
parent
0807783388
commit
a8870eef0d
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ pub fn get_display_size(size: i32) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Round to two decimals
|
// Round to two decimals
|
||||||
size = (size * 100.).round() / 100.;
|
let size = ((size * 100.) as f32).round() / 100.;
|
||||||
format!("{} {}", size, UNITS[unit_counter])
|
format!("{} {}", size, UNITS[unit_counter])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue