From d223ff6a6f6a801607371430d30a9474e4042caf Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 18 May 2026 14:17:43 +0200 Subject: [PATCH] Update src/routes/Player/useStatistics.js Co-authored-by: Timothy Z. --- src/routes/Player/useStatistics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Player/useStatistics.js b/src/routes/Player/useStatistics.js index 05600c0a2..75a2888b7 100644 --- a/src/routes/Player/useStatistics.js +++ b/src/routes/Player/useStatistics.js @@ -61,7 +61,7 @@ const useStatistics = (player, streamingServer) => { const speedScore = Math.min(1, statistics.downloadSpeed / (1 * MB)) * 10; - return Math.min(99, peerScore + downloadedScore + speedCore); + return Math.min(99, peerScore + downloadedScore + speedScore); }); }, [statistics]);