Release v1.6.0

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 05:13:07 +01:00
co-authored by Claude Opus 4.6
parent a967eb1080
commit 55d0e3141c
3 changed files with 13 additions and 6 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ const settingsSubTabs: { key: SettingsSubTab; label: string }[] = [
];
function formatSpeedMbps(speedBps: number): string {
const mbps = Math.max(0, speedBps) / (1024 * 1024);
const mbps = Math.max(0, speedBps || 0) / (1024 * 1024);
return `${mbps.toFixed(2)} MB/s`;
}