From feec0c56b460416b04d1694797242b304d872d62 Mon Sep 17 00:00:00 2001 From: vkartk <53650724+vkartk@users.noreply.github.com> Date: Fri, 26 Jan 2024 09:48:44 +0530 Subject: [PATCH] Enhance FileSizePipe to handle NaN and zero bytes for better resilience --- ui/src/app/downloads.pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/downloads.pipe.ts b/ui/src/app/downloads.pipe.ts index 0ad7b78..1287258 100644 --- a/ui/src/app/downloads.pipe.ts +++ b/ui/src/app/downloads.pipe.ts @@ -50,7 +50,7 @@ export class EncodeURIComponent implements PipeTransform { }) export class FileSizePipe implements PipeTransform { transform(value: number): string { - if (value === 0) return '0 Bytes'; + if (isNaN(value) || value === 0) return '0 Bytes'; const units = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; const unitIndex = Math.floor(Math.log(value) / Math.log(1000)); // Use 1000 for common units