VRFS-2426 do not divide by 2 when calculating full score for latency badge

This commit is contained in:
Brian Smith 2014-12-17 01:14:37 -05:00
parent 39cae7e0a0
commit 08842ae243
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@
if (response.internet_score && response.internet_score.length > 0) {
if (response.internet_score[0].score && !isNaN(response.internet_score[0].score)) {
var internetScore = parseInt(response.internet_score[0].score);
fullScore = (internetScore + calculateAudioLatency(response.my_audio_latency) + calculateAudioLatency(response.last_jam_audio_latency)) / 2;
fullScore = internetScore + calculateAudioLatency(response.my_audio_latency) + calculateAudioLatency(response.last_jam_audio_latency);
}
}