Skip to content

Commit 59d3aff

Browse files
committed
size
1 parent c2728dd commit 59d3aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Coder-Desktop/Coder-Desktop/VPN/VPNProgress.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ struct VPNProgressView: View {
4848
// doesn't support enums with associated values.
4949
return 0.05
5050
}
51-
// 40MB if the server doesn't give us the expected size
52-
let totalBytes = downloadProgress.totalBytesToWrite ?? 40_000_000
51+
// 35MB if the server doesn't give us the expected size
52+
let totalBytes = downloadProgress.totalBytesToWrite ?? 35_000_000
5353
let downloadPercent = min(1.0, Float(downloadProgress.totalBytesWritten) / Float(totalBytes))
5454
return 0.4 * downloadPercent
5555
case .validating:

0 commit comments

Comments
 (0)