Update src/routes/Player/useStatistics.js

Co-authored-by: Timothy Z. <timothy@stremio.com>
This commit is contained in:
Tim 2026-05-18 14:17:43 +02:00 committed by GitHub
parent dc59cd707f
commit d223ff6a6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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