Update the way we display file format and size.

This commit is contained in:
Benoit Marty
2026-06-02 12:50:51 +02:00
parent bdf32eac97
commit 1c058037be
@@ -12,8 +12,8 @@ fun formatFileExtensionAndSize(extension: String, size: String?): String {
return buildString {
append(extension.uppercase())
if (size != null) {
append(' ')
append("($size)")
append("")
append(size)
}
}
}