다운로드 및 업로드 속도가 잘못 표기되던 버그 수정

This commit is contained in:
static
2025-01-18 11:23:22 +09:00
parent 811713cd03
commit d0d4afd2c3
4 changed files with 18 additions and 16 deletions

View File

@@ -50,7 +50,8 @@
다운로드를 기다리는 중
{:else if $status.status === "downloading"}
전송됨
{Math.floor(($status.progress ?? 0) * 100)}% · {formatNetworkSpeed($status.rate ?? 0)}
{Math.floor(($status.progress ?? 0) * 100)}% ·
{formatNetworkSpeed(($status.rate ?? 0) * 8)}
{:else if $status.status === "decryption-pending"}
복호화를 기다리는 중
{:else if $status.status === "decrypting"}