mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-09-12 19:48:45 +01:00
Fix RTL ByteSize rendering.
This commit is contained in:
@@ -93,7 +93,7 @@ class ByteSize(val bytes: Long) {
|
||||
}
|
||||
}
|
||||
|
||||
return "${formatter.format(size)}${if (spaced) " " else ""}${unit.label}"
|
||||
return BidiUtil.forceLtr("${formatter.format(size)}${if (spaced) " " else ""}${unit.label}")
|
||||
}
|
||||
|
||||
operator fun compareTo(other: ByteSize): Int {
|
||||
|
||||
Reference in New Issue
Block a user