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]);