mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix byte speed rates not being properly "humanized".
This commit is contained in:
@@ -122,7 +122,7 @@ partial class Dump
|
||||
minSpeed = currentSpeed;
|
||||
|
||||
PulseProgress?.Invoke(string.Format(Localization.Core.Reading_sector_0_at_lead_out_1, i,
|
||||
ByteSize.FromMegabytes(currentSpeed).Per(_oneSecond)));
|
||||
ByteSize.FromMegabytes(currentSpeed).Per(_oneSecond).Humanize()));
|
||||
|
||||
if(readcd)
|
||||
{
|
||||
@@ -294,7 +294,7 @@ partial class Dump
|
||||
minSpeed = currentSpeed;
|
||||
|
||||
PulseProgress?.Invoke(string.Format(Localization.Core.Reading_sector_0_at_lead_out_1, i,
|
||||
ByteSize.FromMegabytes(currentSpeed).Per(_oneSecond)));
|
||||
ByteSize.FromMegabytes(currentSpeed).Per(_oneSecond).Humanize()));
|
||||
|
||||
if(readcd)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user